summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-02-13 09:38:40 -0500
committerB Stack <bgstack15@gmail.com>2020-02-13 09:38:40 -0500
commitcea23e87e971f2a8494e2bef0a416d1e41d95e0c (patch)
treeac765bb5f39dbb388bc45030520e42898788ded4 /Makefile
parentadd middleclick, and documentation (diff)
downloadmktrayicon-cea23e87e971f2a8494e2bef0a416d1e41d95e0c.tar.gz
mktrayicon-cea23e87e971f2a8494e2bef0a416d1e41d95e0c.tar.bz2
mktrayicon-cea23e87e971f2a8494e2bef0a416d1e41d95e0c.zip
merge scrollevents and menu_separator for new master
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 099d986..0a57059 100644
--- a/Makefile
+++ b/Makefile
@@ -2,4 +2,4 @@ mktrayicon: mktrayicon.c
${CC} `echo $${DEBUG+-DDEBUG}` `pkg-config --cflags gtk+-3.0` -o $@ $< `pkg-config --libs gtk+-3.0` `pkg-config --cflags --libs x11`
clean:
- rm mktrayicon
+ rm mktrayicon || :
bgstack15