fix Makefile to only install theme files (#487)

pull/489/head
Jeremy Bicha 2016-06-16 19:13:40 -04:00 committed by Dustin Falgout
parent 51713dccca
commit 5d51fce920
1 changed files with 9 additions and 1 deletions

View File

@ -34,7 +34,15 @@ clean:
install: all install: all
install -d -m755 $(INSTALL_DIR) install -d -m755 $(INSTALL_DIR)
for f in *; do cp -pr $$f $(INSTALL_DIR)/; done 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)
uninstall: uninstall:
rm -rf $(INSTALL_DIR) rm -rf $(INSTALL_DIR)