common.h: move common code (non-user) to header
[cdsspec-compiler.git] / Makefile
1 BIN=libthreads
2 SOURCE=libthreads.c schedule.c
3 HEADERS=libthreads.h schedule.h common.h
4 FLAGS=
5
6 all: ${BIN}
7
8 ${BIN}: ${SOURCE} ${HEADERS}
9         gcc -o ${BIN} ${SOURCE} ${FLAGS}
10
11 clean:
12         rm -f ${BIN} *.o
13
14 tags::
15         ctags -R