diff options
author | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2008-02-03 01:09:48 -0500 |
---|---|---|
committer | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2008-02-03 01:09:48 -0500 |
commit | 2d507260ee723f8302c5c97a9bda1cf00f30ec99 (patch) | |
tree | 033231fa56c53c67916cbc1f1a05d9560ef1d4ab /Makefile | |
parent | 526afdfb333ca29170fd210b08860ac2a4c141ed (diff) |
many changes
- use declarations from kernel
- get rid of stuipd system call macros
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,4 +1,8 @@ | |||
1 | CFLAGS=-Wall -Wdeclaration-after-statement -g -Iinclude/ -D_XOPEN_SOURCE=600 | 1 | KERNEL_DIR = ../litmus |
2 | |||
3 | INC=-Iinclude/ -I${KERNEL_DIR}/include/ | ||
4 | |||
5 | CFLAGS=-Wall -Wdeclaration-after-statement ${INC} -g -D_XOPEN_SOURCE=600 | ||
2 | CPPFLAGS=-Wall -g | 6 | CPPFLAGS=-Wall -g |
3 | 7 | ||
4 | LIBS= ./liblitmus.a | 8 | LIBS= ./liblitmus.a |
@@ -41,4 +45,3 @@ stdump: liblitmus.a litmus.h sched_trace.h stdump.o | |||
41 | 45 | ||
42 | liblitmus.a: ${LIB_OBJ} litmus.h | 46 | liblitmus.a: ${LIB_OBJ} litmus.h |
43 | ${AR} rcs liblitmus.a ${LIB_OBJ} | 47 | ${AR} rcs liblitmus.a ${LIB_OBJ} |
44 | |||