summarylogtreecommitdiffstats
path: root/Makefile
blob: b6702f0330d7cc8d454c336d193be55dcf1027e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# kmailpt makefile
#

PREFIX = $(DESTDIR)usr/local/
ICOPREFIX = $(DESTDIR)usr/share/icons/

INSTALL = install --group=0 --owner=0 --mode=0755
INSTALL2 = install --group=0 --owner=0 --mode=0644

install: kmailpt.pl attach_delete.png attach_save.png
	mkdir -p $(PREFIX)bin/ $(ICOPREFIX) ; \
	$(INSTALL) kmailpt.pl $(PREFIX)bin/ ; \
	$(INSTALL2) attach_delete.png $(ICOPREFIX) ; \
	$(INSTALL2) attach_save.png $(ICOPREFIX)