This repository has been archived on 2019-04-06. You can view files and clone it, but cannot push or open issues or pull requests.
adventin/desktop/Makefile

19 lines
425 B
Makefile
Raw Normal View History

2009-08-26 08:25:53 +03:00
include ../Rules.make
2009-11-08 16:33:23 +02:00
include ../config.make
2009-08-26 08:25:53 +03:00
clean:
rm -rf instead.desktop
all: instead.desktop
instead.desktop: instead.desktop.in
cat instead.desktop.in | sed -e "s|@BIN|$(BIN)|g" > instead.desktop
install:
2009-09-23 07:21:24 +03:00
$(INSTALLD) $(DESTDIR)$(PREFIX)/share/applications
$(INSTALL) instead.desktop $(DESTDIR)$(PREFIX)/share/applications/instead.desktop
2009-08-26 08:25:53 +03:00
2009-09-23 07:21:24 +03:00
uninstall:
$(RM) $(DESTDIR)$(PREFIX)/share/applications/instead.desktop
2009-09-23 09:28:30 +03:00