Skip to content

Commit b0aaf84

Browse files
jbichakhurshid-alam
authored andcommitted
Don't install GTK3 source files. Fixes #503 (#504)
1 parent 749cfa3 commit b0aaf84

1 file changed

Lines changed: 17 additions & 9 deletions

File tree

Makefile

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,23 @@ clean:
3434
install: all
3535
install -d -m755 $(INSTALL_DIR)
3636

37-
cp -pr gtk-2.0 $(INSTALL_DIR)
38-
cp -pr gtk-3.0 $(INSTALL_DIR)
39-
cp -pr gtk-3.20 $(INSTALL_DIR)
40-
cp -pr metacity-1 $(INSTALL_DIR)
41-
cp -pr openbox-3 $(INSTALL_DIR)
42-
cp -pr xfce-notify-4.0 $(INSTALL_DIR)
43-
cp -pr xfwm4 $(INSTALL_DIR)
44-
cp -pr unity $(INSTALL_DIR)
45-
cp -p index.theme $(INSTALL_DIR)
37+
mkdir -p $(INSTALL_DIR)/gtk-3.0
38+
mkdir -p $(INSTALL_DIR)/gtk-3.20
39+
cp -pr gtk-2.0 $(INSTALL_DIR)
40+
cp -p gtk-3.0/gtk.css $(INSTALL_DIR)/gtk-3.0
41+
cp -p gtk-3.0/gtk-dark.css $(INSTALL_DIR)/gtk-3.0
42+
cp -p gtk-3.0/gtk.gresource $(INSTALL_DIR)/gtk-3.0
43+
cp -p gtk-3.0/thumbnail.png $(INSTALL_DIR)/gtk-3.0
44+
cp -p gtk-3.20/gtk.css $(INSTALL_DIR)/gtk-3.20
45+
cp -p gtk-3.20/gtk-dark.css $(INSTALL_DIR)/gtk-3.20
46+
cp -p gtk-3.20/gtk.gresource $(INSTALL_DIR)/gtk-3.20
47+
cp -p gtk-3.20/thumbnail.png $(INSTALL_DIR)/gtk-3.20
48+
cp -pr metacity-1 $(INSTALL_DIR)
49+
cp -pr openbox-3 $(INSTALL_DIR)
50+
cp -pr xfce-notify-4.0 $(INSTALL_DIR)
51+
cp -pr xfwm4 $(INSTALL_DIR)
52+
cp -pr unity $(INSTALL_DIR)
53+
cp -p index.theme $(INSTALL_DIR)
4654

4755
uninstall:
4856
rm -rf $(INSTALL_DIR)

0 commit comments

Comments
 (0)