summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 707790e..3f50370 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,9 @@
bustle-dbus-monitor: bustle-dbus-monitor.c
$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) \
- -g -O2 `pkg-config --cflags --libs dbus-1` \
+ -g -O2 \
-Wall -Wunused \
- -o bustle-dbus-monitor bustle-dbus-monitor.c
+ -o bustle-dbus-monitor bustle-dbus-monitor.c \
+ `pkg-config --cflags --libs dbus-1`
clean:
rm -f bustle-dbus-monitor