I-Nex/pixmaps/Makefile

15 lines
734 B
Makefile
Raw Normal View History

2014-06-30 21:05:19 +08:00
#!/usr/bin/make -f
include ../i-nex.mk
install:
2014-07-01 06:07:02 +08:00
mkdir -p ${DESTDIR}$(PREFIX)/share/pixmaps
2014-06-30 21:05:19 +08:00
${INSTALL} 644 i-nex.png $(DESTDIR)$(PREFIX)/share/pixmaps/
${INSTALL} 644 i-nex-16.png $(DESTDIR)$(PREFIX)/share/pixmaps/
${INSTALL} 644 i-nex-32.png $(DESTDIR)$(PREFIX)/share/pixmaps/
${INSTALL} 644 i-nex-128.png $(DESTDIR)$(PREFIX)/share/pixmaps/
2014-01-25 23:30:02 +08:00
uninstall:
2014-01-25 23:30:02 +08:00
2014-06-30 21:05:19 +08:00
if test -f $(DESTDIR)$(PREFIX)/share/pixmaps/i-nex-16.png ; then ${RM} $(DESTDIR)$(PREFIX)/share/pixmaps/i-nex-16.png ; fi
if test -f ${DESTDIR}$(PREFIX)/share/pixmaps/i-nex-32.png ; then ${RM} $(DESTDIR)$(PREFIX)/share/pixmaps/i-nex-32.png ; fi
if test -f ${DESTDIR}$(PREFIX)/share/pixmaps/i-nex-128.png ; then ${RM} $(DESTDIR)$(PREFIX)/share/pixmaps/i-nex-128.png ; fi