aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 1c2a8bd..da81bf9 100644
--- a/Makefile
+++ b/Makefile
@@ -121,6 +121,8 @@ install:
121 $(foreach SIZE,$(ICON_SIZES),$(call install-icon,$(SIZE));) 121 $(foreach SIZE,$(ICON_SIZES),$(call install-icon,$(SIZE));)
122 install -Dm644 $(addprefix $(APPICON_DIR), full_color.svg) $(addprefix $(INSTALL_DIR), share/icons/hicolor/scalable/apps/$(APP_ID).svg) 122 install -Dm644 $(addprefix $(APPICON_DIR), full_color.svg) $(addprefix $(INSTALL_DIR), share/icons/hicolor/scalable/apps/$(APP_ID).svg)
123 desktop-file-install --dir=$(addprefix $(INSTALL_DIR), share/applications/) $(addprefix $(RESOURCES_DIR), $(APP_ID).desktop) 123 desktop-file-install --dir=$(addprefix $(INSTALL_DIR), share/applications/) $(addprefix $(RESOURCES_DIR), $(APP_ID).desktop)
124 mkdir -p $(addprefix $(INSTALL_DIR), share/appdata/)
125 install -Dm644 $(addprefix $(RESOURCES_DIR), $(APP_ID).appdata.xml) $(addprefix $(INSTALL_DIR), share/appdata/)
124 gtk-update-icon-cache -f -t $(addprefix $(INSTALL_DIR), share/icons/hicolor) 126 gtk-update-icon-cache -f -t $(addprefix $(INSTALL_DIR), share/icons/hicolor)
125 127
126.PHONY: uninstall 128.PHONY: uninstall
@@ -134,6 +136,7 @@ uninstall:
134 $(foreach SIZE,$(ICON_SIZES),$(call uninstall-icon,$(SIZE));) 136 $(foreach SIZE,$(ICON_SIZES),$(call uninstall-icon,$(SIZE));)
135 $(GNU_RM) -f $(addprefix $(INSTALL_DIR), share/icons/hicolor/scalable/apps/$(APP_ID).svg) 137 $(GNU_RM) -f $(addprefix $(INSTALL_DIR), share/icons/hicolor/scalable/apps/$(APP_ID).svg)
136 $(GNU_RM) -f $(addsuffix $(APP_ID).desktop, $(addprefix $(INSTALL_DIR), share/applications/)) 138 $(GNU_RM) -f $(addsuffix $(APP_ID).desktop, $(addprefix $(INSTALL_DIR), share/applications/))
139 $(GNU_RM) -f $(addsuffix $(APP_ID).appdata.xml, $(addprefix $(INSTALL_DIR), share/appdata/))
137 140
138.PHONY: clean 141.PHONY: clean
139 142