mirror of
https://github.com/darlinghq/darling-libkqueue.git
synced 2024-11-26 21:20:38 +00:00
a125325ca4
git-svn-id: svn://svn.code.sf.net/p/libkqueue/code/trunk@663 fb4e3144-bc1c-4b72-a658-5bcd248dd7f7
13 lines
344 B
Makefile
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
|