summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: d42a2cf642024d681f43543aa4f145bca1856ccc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CFLAGS=-Wextra -Wall -O0 -g `pkg-config --cflags dbus-1` -pthread
LIBS= `pkg-config --libs dbus-1` -lrt

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