summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index dcfe1ae..a267dc1 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,5 @@
-CC=clang
-
mktrayicon: mktrayicon.c
- ${CC} -g `pkg-config --cflags gtk+-3.0` -o $@ $< `pkg-config --libs gtk+-3.0`
+ ${CC} `pkg-config --cflags gtk+-3.0` -o $@ $< `pkg-config --libs gtk+-3.0`
+
+clean:
+ rm mktrayicon
bgstack15