aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 18a3c82..765ebde 100644
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,19 @@
1CFLAGS=-Wall -g 1CFLAGS=-Wall -g
2CPPFLAGS=-Wall -g 2CPPFLAGS=-Wall -g
3 3
4TARGETS = showsched iotest set_rt_mode run timeout rt_launch edfhsb liblitmus.a wait_test np_test
4 5
5all: showsched iotest set_rt_mode run timeout rt_launch edfhsb liblitmus.a wait_test
6 6
7all: ${TARGETS}
7clean: 8clean:
8 rm *.o showsched iotest set_rt_mode run timeout rt_launch edfhsb liblitmus.a wait_test 9 rm *.o ${TARGETS}
9 10
10wait_test: wait_test.o litmus.h litmus.o 11wait_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
14np_test: np_test.o litmus.h litmus.o
15 cc -static -o np_test litmus.o np_test.o
16
13iotest: iotest.o litmus.h litmus.o 17iotest: 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