Archived
1
0
Fork 0

log.c: Added basic logging support.

This commit is contained in:
Henrik Hautakoski 2010-11-19 11:12:22 +01:00
parent 4a33fa091f
commit dd0f1ae393
4 changed files with 222 additions and 1 deletions

View file

@ -1,6 +1,6 @@
# Test makefile
CC=gcc
CFLAGS=-g -D__DEBUG__
CFLAGS=-g -D__DEBUG__
LDFLAGS=-L/usr/lib64/mysql -lmysqlclient
all : raw_inotify strbuf path rbtree inotify fscrawl queue
@ -57,5 +57,8 @@ fscrawl :
queue :
$(CC) $(CFLAGS) ../src/queue.c t_queue.c -o test_queue
log :
$(CC) $(CFLAGS) ../src/die.c ../src/strbuf.c ../src/xalloc.c ../src/log.c t_log.c -o test_log
clean :
rm -f test_*