darling-libkqueue/kqlite/Makefile
mheily a125325ca4 Remove the dependency on pthreads, and move dispatching to a separate translation unit
git-svn-id: svn://svn.code.sf.net/p/libkqueue/code/trunk@663 fb4e3144-bc1c-4b72-a658-5bcd248dd7f7
2013-11-20 02:07:58 +00:00

13 lines
344 B
Makefile

test-lite: test-lite.c kqlite.c lite.h
gcc -D_GNU_SOURCE=1 -g -O0 -std=c99 -Wall -Werror -o test-lite test-lite.c kqlite.c
#TODO:
test-dispatch: test-dispatch.c lite.h
gcc -D_GNU_SOURCE=1 -g -O0 -std=c99 -Wall -Werror -fopenmp -o test-dispatch kqlite.c test-dispatch.c dispatch.c
check: test-lite
./test-lite
clean:
rm -f test-lite *.o