ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/Makefile.am
Revision: 1.2
Committed: Mon Mar 5 20:18:33 2007 UTC (17 years, 2 months ago) by root
Branch: MAIN
CVS Tags: rel-2_0, rel-2_1
Changes since 1.1: +5 -3 lines
Log Message:
mostly clean, except for uninstall

File Contents

# Content
1 pkgstatedir = @pkgstatedir@
2 pkgconfdir = @pkgconfdir@
3
4 EXTRA_DIST = *.pm *.ext
5
6 PERL = @PERL@
7
8 install-data-local:
9 @$(NORMAL_INSTALL)
10 $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/ext
11 for i in $(srcdir)/*.pm $(srcdir)/*.ext; do \
12 $(INSTALL_DATA) "$$i" $(DESTDIR)$(pkgdatadir)/ext; \
13 done
14
15 # Uninstall unchanged config/var files so make distcheck is happy
16 # but leave changed file, so no configuration/game state is lost
17 uninstall-local:
18 -for i in $(srcdir)/*.pm $(srcdir)/*.ext; do \
19 rm -f $(DESTDIR)$(pkgdatadir)/ext/"$$i"; \
20 done
21