From ab6a7df852d864463602cac45f8c0afa483a5591 Mon Sep 17 00:00:00 2001 From: Jeremy Bicha Date: Tue, 26 Jul 2016 01:25:19 -0400 Subject: [PATCH] Don't install GTK3 source files. Fixes #503 --- Makefile | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index a1b59bd..d10b401 100755 --- a/Makefile +++ b/Makefile @@ -34,15 +34,23 @@ clean: install: all install -d -m755 $(INSTALL_DIR) - cp -pr gtk-2.0 $(INSTALL_DIR) - cp -pr gtk-3.0 $(INSTALL_DIR) - cp -pr gtk-3.20 $(INSTALL_DIR) - cp -pr metacity-1 $(INSTALL_DIR) - cp -pr openbox-3 $(INSTALL_DIR) - cp -pr xfce-notify-4.0 $(INSTALL_DIR) - cp -pr xfwm4 $(INSTALL_DIR) - cp -pr unity $(INSTALL_DIR) - cp -p index.theme $(INSTALL_DIR) + mkdir -p $(INSTALL_DIR)/gtk-3.0 + mkdir -p $(INSTALL_DIR)/gtk-3.20 + cp -pr gtk-2.0 $(INSTALL_DIR) + cp -p gtk-3.0/gtk.css $(INSTALL_DIR)/gtk-3.0 + cp -p gtk-3.0/gtk-dark.css $(INSTALL_DIR)/gtk-3.0 + cp -p gtk-3.0/gtk.gresource $(INSTALL_DIR)/gtk-3.0 + cp -p gtk-3.0/thumbnail.png $(INSTALL_DIR)/gtk-3.0 + cp -p gtk-3.20/gtk.css $(INSTALL_DIR)/gtk-3.20 + cp -p gtk-3.20/gtk-dark.css $(INSTALL_DIR)/gtk-3.20 + cp -p gtk-3.20/gtk.gresource $(INSTALL_DIR)/gtk-3.20 + cp -p gtk-3.20/thumbnail.png $(INSTALL_DIR)/gtk-3.20 + cp -pr metacity-1 $(INSTALL_DIR) + cp -pr openbox-3 $(INSTALL_DIR) + cp -pr xfce-notify-4.0 $(INSTALL_DIR) + cp -pr xfwm4 $(INSTALL_DIR) + cp -pr unity $(INSTALL_DIR) + cp -p index.theme $(INSTALL_DIR) uninstall: rm -rf $(INSTALL_DIR)