From dd6afa77be0f4bb60e1a1ae45cef62ee00b9f0a9 Mon Sep 17 00:00:00 2001 From: Akira Ohgaki <akiraohgaki@gmail.com> Date: Sun, 7 Aug 2016 12:32:11 +0900 Subject: [PATCH] Update Makefile --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 456639e..9665ad0 100644 --- a/Makefile +++ b/Makefile @@ -27,11 +27,13 @@ clean: install: build $(INSTALL_PROGRAM) ./$(TARGET) $(DESTDIR)$(bindir)/$(TARGET) - $(INSTALL_DATA) $(srcdir)/$(TARGET).desktop $(DESTDIR)$(datadir)/applications/$(TARGET).desktop + $(INSTALL_DATA) $(srcdir)/desktop/$(TARGET).desktop $(DESTDIR)$(datadir)/applications/$(TARGET).desktop + $(INSTALL_DATA) $(srcdir)/desktop/$(TARGET).svg $(DESTDIR)$(datadir)/icons/hicolor/scalable/apps/$(TARGET).svg uninstall: $(RM) $(DESTDIR)$(bindir)/$(TARGET) $(RM) $(DESTDIR)$(datadir)/applications/$(TARGET).desktop + $(RM) $(DESTDIR)$(datadir)/icons/hicolor/scalable/apps/$(TARGET).svg $(TARGET): # Just copy for now -- GitLab