diff options
author | Bjoern B. Brandenburg <bbb@jupiter-cs.cs.unc.edu> | 2007-02-05 18:31:20 -0500 |
---|---|---|
committer | Bjoern B. Brandenburg <bbb@jupiter-cs.cs.unc.edu> | 2007-02-05 18:31:20 -0500 |
commit | b32b21bd57b21b249447e2944c4473e0d196bb4f (patch) | |
tree | fea9e8712fbc97f30003065074a1ff180f3e1de4 /Makefile |
liblitmus essential tools
liblitmus should consist only of the litmus library and the essential
tools.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5157fdf --- /dev/null +++ b/Makefile | |||
@@ -0,0 +1,28 @@ | |||
1 | CFLAGS=-Wall -g | ||
2 | CPPFLAGS=-Wall -g | ||
3 | |||
4 | |||
5 | all: showsched iotest set_rt_mode run timeout rt_launch edfhsb | ||
6 | |||
7 | |||
8 | iotest: iotest.o litmus.h litmus.o | ||
9 | cc -static -o iotest litmus.o iotest.o | ||
10 | |||
11 | run: run.o | ||
12 | cc -o run run.o | ||
13 | |||
14 | set_rt_mode: litmus.o set_rt_mode.o | ||
15 | cc -o set_rt_mode litmus.o set_rt_mode.o | ||
16 | |||
17 | showsched: show_scheduler.o litmus.o litmus.h | ||
18 | cc -o showsched show_scheduler.o litmus.o | ||
19 | |||
20 | timeout: litmus.o timeout.o litmus.h | ||
21 | cc -static -o timeout litmus.o timeout.o | ||
22 | |||
23 | rt_launch: litmus.o litmus.h rt_launch.o | ||
24 | cc -static -o rt_launch litmus.o rt_launch.o | ||
25 | |||
26 | edfhsb: litmus.o edf-hsb.o litmus.h edf-hsb.h hrt.o | ||
27 | cc -o edfhsb hrt.o litmus.o edf-hsb.o | ||
28 | |||