summaryrefslogtreecommitdiffstats
path: root/kapptemplate/Makefile.cvs
blob: 2d5db15f0feb3f580c20f5699c902ea66602b030 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
all:
	@echo "Copying over the admin directory"; \
	for file in admin/*; do \
		if [ -f $$file -a $$file != 'admin/Makefile.am' -a $$file != 'admin/Makefile.in' ]; then \
			/bin/rm -f $$file; \
		fi \
	done
	@for file in ../admin/*; do \
		if [ -f $$file ]; then \
			cp -p $$file admin/; \
		fi \
	done