Stdout output-driver with test
This commit is contained in:
parent
131a8b9501
commit
3ec6498e83
3 changed files with 101 additions and 1 deletions
|
|
@ -3,7 +3,7 @@ CC=gcc
|
|||
CFLAGS=-g -D__DEBUG__
|
||||
LDFLAGS=-L/usr/lib64/mysql -lmysqlclient
|
||||
|
||||
all : raw_inotify strbuf path rbtree inotify tree indexer mysql queue
|
||||
all : raw_inotify strbuf path rbtree inotify tree indexer mysql stdout queue
|
||||
|
||||
raw_inotify :
|
||||
$(CC) -linotifytools t_raw_inotify.c -o test_raw_inotify
|
||||
|
|
@ -71,6 +71,13 @@ mysql :
|
|||
../src/ini/dictionary.c \
|
||||
t_mysql.c -o test_mysql
|
||||
|
||||
stdout :
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) \
|
||||
../src/output/stdout.c \
|
||||
../src/ini/iniparser.c \
|
||||
../src/ini/dictionary.c \
|
||||
t_stdout.c -o test_stdout
|
||||
|
||||
queue :
|
||||
$(CC) $(CFLAGS) ../src/notify/queue.c t_queue.c -o test_queue
|
||||
|
||||
|
|
|
|||
Reference in a new issue