summaryrefslogtreecommitdiffstats
path: root/kapptemplate/admin/Makefile.am
blob: 3ea7f23f4d4c4bd17b2e0e03517b7822d06b45ef (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' -a $$destfile != '.git' -a $$destfile != '.gitmodules' ]; then \
			$(INSTALL_DATA) $$file \
				$(DESTDIR)$(kde_datadir)/kapptemplate/admin/$$destfile; \
		fi \
	done

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