diff options
author | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2007-09-10 17:37:21 -0400 |
---|---|---|
committer | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2007-09-10 17:37:21 -0400 |
commit | 5760b6ad37c794a0dd5312206184d0b8ae8e8eda (patch) | |
tree | 476344f1de193af837df58f7731e81336978fb82 /Makefile | |
parent | 3f7517be387a42d5e9bc856ad6f0ce6582f7d7aa (diff) |
added np_test
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,15 +1,19 @@ | |||
1 | CFLAGS=-Wall -g | 1 | CFLAGS=-Wall -g |
2 | CPPFLAGS=-Wall -g | 2 | CPPFLAGS=-Wall -g |
3 | 3 | ||
4 | TARGETS = showsched iotest set_rt_mode run timeout rt_launch edfhsb liblitmus.a wait_test np_test | ||
4 | 5 | ||
5 | all: showsched iotest set_rt_mode run timeout rt_launch edfhsb liblitmus.a wait_test | ||
6 | 6 | ||
7 | all: ${TARGETS} | ||
7 | clean: | 8 | clean: |
8 | rm *.o showsched iotest set_rt_mode run timeout rt_launch edfhsb liblitmus.a wait_test | 9 | rm *.o ${TARGETS} |
9 | 10 | ||
10 | wait_test: wait_test.o litmus.h litmus.o | 11 | wait_test: wait_test.o litmus.h litmus.o |
11 | cc -static -o wait_test litmus.o wait_test.o | 12 | cc -static -o wait_test litmus.o wait_test.o |
12 | 13 | ||
14 | np_test: np_test.o litmus.h litmus.o | ||
15 | cc -static -o np_test litmus.o np_test.o | ||
16 | |||
13 | iotest: iotest.o litmus.h litmus.o | 17 | iotest: iotest.o litmus.h litmus.o |
14 | cc -static -o iotest litmus.o iotest.o | 18 | cc -static -o iotest litmus.o iotest.o |
15 | 19 | ||