Archived
1
0
Fork 0

notify/inotify.c: first change, uses queue

This commit is contained in:
Henrik Hautakoski 2010-09-26 14:53:14 +02:00
parent dd73cf9422
commit c6f346586e
3 changed files with 83 additions and 104 deletions

View file

@ -7,7 +7,7 @@ CFLAGS = -O2 -Werror
LDFLAGS =
ifdef DEBUG
CFLAGS += -g -D__DEBUG__
CFLAGS += -g -D__DEBUG__
endif
ifndef V
@ -20,7 +20,6 @@ FINDOBJ = find . -name "*.o" -type f -printf "%P\n"
BUILD := ./build
PROGRAM := $(BUILD)/arch
ifeq ($(output), mysql)
CFLAGS += `mysql_config --cflags`
LDFLAGS += -L/usr/lib/mysql -lmysqlclient
@ -44,6 +43,7 @@ obj += src/output/$(output).o
obj += src/notify/inotify.o
obj += src/notify/event.o
obj += src/notify/tree.o
obj += src/notify/queue.o
obj += src/indexer.o
obj += src/arch.o