common.h: move common code (non-user) to header
[model-checker.git] / Makefile
index 25b9459a8cfa0176d8b9f61f7ae4405f8d36a4cb..fc75543c3d814547a74ea94f45ea4a4d5a6610e3 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,15 @@
 BIN=libthreads
-SOURCE=libthreads.c
+SOURCE=libthreads.c schedule.c
+HEADERS=libthreads.h schedule.h common.h
 FLAGS=
 
 all: ${BIN}
 
-${BIN}: ${SOURCE}
+${BIN}: ${SOURCE} ${HEADERS}
        gcc -o ${BIN} ${SOURCE} ${FLAGS}
 
 clean:
        rm -f ${BIN} *.o
+
+tags::
+       ctags -R