From b32b21bd57b21b249447e2944c4473e0d196bb4f Mon Sep 17 00:00:00 2001 From: "Bjoern B. Brandenburg" Date: Mon, 5 Feb 2007 18:31:20 -0500 Subject: liblitmus essential tools liblitmus should consist only of the litmus library and the essential tools. --- Makefile | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5157fdf --- /dev/null +++ b/Makefile @@ -0,0 +1,28 @@ +CFLAGS=-Wall -g +CPPFLAGS=-Wall -g + + +all: showsched iotest set_rt_mode run timeout rt_launch edfhsb + + +iotest: iotest.o litmus.h litmus.o + cc -static -o iotest litmus.o iotest.o + +run: run.o + cc -o run run.o + +set_rt_mode: litmus.o set_rt_mode.o + cc -o set_rt_mode litmus.o set_rt_mode.o + +showsched: show_scheduler.o litmus.o litmus.h + cc -o showsched show_scheduler.o litmus.o + +timeout: litmus.o timeout.o litmus.h + cc -static -o timeout litmus.o timeout.o + +rt_launch: litmus.o litmus.h rt_launch.o + cc -static -o rt_launch litmus.o rt_launch.o + +edfhsb: litmus.o edf-hsb.o litmus.h edf-hsb.h hrt.o + cc -o edfhsb hrt.o litmus.o edf-hsb.o + -- cgit v1.2.2