diff options
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 | ||