diff options
author | Javier <dev.git@javispedro.com> | 2015-02-08 17:57:04 +0100 |
---|---|---|
committer | Javier <dev.git@javispedro.com> | 2015-02-08 17:57:04 +0100 |
commit | 1c9bbc863b363ef7387c583feade3a18da2ea4d3 (patch) | |
tree | 01bce2b360fa3846deef01eac8fd58f6249952b7 /Makefile | |
parent | 3ba697bf983b74e5bc046412764cf25ee5a593a8 (diff) | |
download | gplay-1c9bbc863b363ef7387c583feade3a18da2ea4d3.tar.gz gplay-1c9bbc863b363ef7387c583feade3a18da2ea4d3.zip |
improve makefile install
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -18,8 +18,10 @@ clean: rm -f gplay *.o install: gplay - install gplay $(DESTDIR)/usr/bin/gplay - install gplay.desktop $(DESTDIR)/usr/share/applications/gplay.desktop + install -d $(DESTDIR)/usr/bin + install -m 0755 gplay $(DESTDIR)/usr/bin/gplay + install -d $(DESTDIR)/usr/share/applications + install -m 0644 gplay.desktop $(DESTDIR)/usr/share/applications/gplay.desktop uninstall: rm -f $(DESTDIR)/usr/bin/gplay $(DESTDIR)/usr/share/applications/gplay.desktop |