summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: ac36b078088e6e10fddd4495b9b0e1b50572c9f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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