summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
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