summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2009-06-16 17:10:52 +0200
committerLennart Poettering <lennart@poettering.net>2009-06-16 17:10:52 +0200
commit32744efb214aa3ffbf15a9918b3bd3b3d41e7264 (patch)
tree074ba8ceb12e6588d81eb53bc773d328f0d73c6d /Makefile
parent108e5bbae0c1bb41b88434e74d039b6df50fed0e (diff)
autoconfization
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 0 insertions, 16 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index ac36b07..0000000
--- a/Makefile
+++ /dev/null
@@ -1,16 +0,0 @@
-CFLAGS=-Wextra -Wall -O0 -g `pkg-config --cflags dbus-1` -pthread -fdiagnostics-show-option -DPACKAGE_VERSION=\"0.1\" -rdynamic
-LIBS= `pkg-config --libs dbus-1` -lrt
-
-all: rtkit-daemon rtkit-test rtkitctl
-
-rtkit-daemon: rtkit-daemon.o rtkit.h
- $(CC) $(CFLAGS) $(LIBS) -o rtkit-daemon $^
-
-rtkit-test: rtkit-test.o rtkit.o rtkit.h
- $(CC) $(CFLAGS) $(LIBS) -o rtkit-test $^
-
-rtkitctl: rtkitctl.o rtkit.h
- $(CC) $(CFLAGS) $(LIBS) -o rtkitctl $^
-
-clean:
- rm -rf rtkit-daemon rtkit-test rtkitctl *.o