diff options
author | Your Name <you@example.com> | 2021-01-08 12:28:44 -0500 |
---|---|---|
committer | Your Name <you@example.com> | 2021-01-08 12:28:44 -0500 |
commit | 382902e0cd8ebee8b855ffca98ad4beadb0e1b24 (patch) | |
tree | 5012907d827296672e6cfb4ff15b800892f32a13 /Makefile | |
parent | 5866bf6e3a043500b81535072c5b9f287f05aa91 (diff) | |
download | biblereader-382902e0cd8ebee8b855ffca98ad4beadb0e1b24.tar.gz biblereader-382902e0cd8ebee8b855ffca98ad4beadb0e1b24.tar.bz2 biblereader-382902e0cd8ebee8b855ffca98ad4beadb0e1b24.zip |
Install multiple size icons
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -17,7 +17,9 @@ install: $(EXECUTABLE) install -d $(DESTDIR)$(PREFIX)/share/applications/ install -m 644 biblereader.desktop $(DESTDIR)$(PREFIX)/share/applications/ install -d $(DESTDIR)$(PREFIX)/share/icons/hicolor/128x128/apps/ - install -m 644 biblereader.png $(DESTDIR)$(PREFIX)/share/icons/hicolor/128x128/apps/ + install -m 644 biblereader_128.png $(DESTDIR)$(PREFIX)/share/icons/hicolor/128x128/apps/biblereader.png + install -d $(DESTDIR)$(PREFIX)/share/icons/hicolor/64x64/apps/ + install -m 644 biblereader_64.png $(DESTDIR)$(PREFIX)/share/icons/hicolor/128x128/apps/biblereader.png $(EXECUTABLE): $(OBJECTS) $(CC) $(LDFLAGS) $(OBJECTS) -o $@ `pkg-config $(LIBS) --libs` |