ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/Makefile.am
Revision: 1.1
Committed: Fri Dec 15 19:29:18 2006 UTC (17 years, 6 months ago) by root
Branch: MAIN
Log Message:
moved perl extensions into server codebase, where they belong

File Contents

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