File: Makefile.am

package info (click to toggle)
kxstitch 0.7-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 4,252 kB
  • ctags: 2,208
  • sloc: sh: 11,628; cpp: 10,821; perl: 2,724; xml: 1,280; makefile: 254
file content (12 lines) | stat: -rw-r--r-- 429 bytes parent folder | download | duplicates (28)
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 \
		if [ -f $$file -a $$file != 'Makefile' -a $$file != 'Makefile.in' -a $$file != 'Makefile.am' ]; then \
			destfile=`basename $$file` \
			$(INSTALL_DATA) $$file \
				$(DESTDIR)$(kde_datadir)/kapptemplate/admin/$$destfile; \
		fi \
	done

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