summaryrefslogtreecommitdiffstats
path: root/kapptemplate/admin/Makefile.am
blob: 1684793499623455bcb36d93f5d9933c47e89e58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
install-data-local:
	$(mkinstalldirs) $(DESTDIR)$(kde_datadir)/kapptemplate/admin
	for file in $(srcdir)/*; do \
		destfile=`basename $$file`; \
		if [ -f $$file -a $$destfile != 'Makefile' -a $$destfile != 'Makefile.in' -a $$destfile != 'Makefile.am' ]; then \
			$(INSTALL_DATA) $$file \
				$(DESTDIR)$(kde_datadir)/kapptemplate/admin/$$destfile; \
		fi \
	done

uninstall-local:
	-/bin/rm -rf $(DESTDIR)$(kde_datadir)/kapptemplate/admin