From f4dd55fa9fcf2b4a018793a2bfe3fe42e9dbc663 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 4 Jun 2009 01:46:12 +0200 Subject: Initial commit --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..85c6ab4 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +CFLAGS=-Wextra -Wall -O0 -g `pkg-config --cflags dbus-1` +LIBS= `pkg-config --libs dbus-1` + +all: rtkit-daemon rtkit-test + +rtkit-daemon: rtkit-daemon.o + $(CC) $(CFLAGS) $(LIBS) -o rtkit-daemon $^ + +rtkit-test: rtkit-test.o rtkit.o rtkit.h + $(CC) $(CFLAGS) $(LIBS) -o rtkit-test $^ + +clean: + rm -rf rtkit-daemon *.o -- cgit