diff options
author | Jon Gjengset <jon@thesquareplanet.com> | 2013-09-05 19:40:32 +0100 |
---|---|---|
committer | Jon Gjengset <jon@thesquareplanet.com> | 2013-09-05 19:40:32 +0100 |
commit | aecf1bcd0cfd7333a60f0309a2a167a3fb3ff752 (patch) | |
tree | 0eacd16d0063efe7f0caef42f74eecc1b931c17c /Makefile | |
parent | Ignore binary (diff) | |
download | mktrayicon-aecf1bcd0cfd7333a60f0309a2a167a3fb3ff752.tar.gz mktrayicon-aecf1bcd0cfd7333a60f0309a2a167a3fb3ff752.tar.bz2 mktrayicon-aecf1bcd0cfd7333a60f0309a2a167a3fb3ff752.zip |
Add makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..dcfe1ae --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +CC=clang + +mktrayicon: mktrayicon.c + ${CC} -g `pkg-config --cflags gtk+-3.0` -o $@ $< `pkg-config --libs gtk+-3.0` |