Changeset 1081 for trunk/lang/perl/Makefile.in
- Timestamp:
- Jul 31, 2008 9:20:59 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lang/perl/Makefile.in
r1018 r1081 11 11 12 12 INSTALL = @INSTALL@ 13 INSTALL_PROGRAM = ${INSTALL} -m 75514 INSTALL_DATA = ${INSTALL} -m 64415 INSTALL_SCRIPT = ${INSTALL} -m 64416 13 RM = rm -f 14 PERL = @PERL@ 17 15 18 PERL = @PERL@ 16 build_dir = build 19 17 20 all: Makefile.perl21 $(MAKE) - f Makefile.perl18 all: tmp 19 $(MAKE) -C $(build_dir) 22 20 23 Makefile.perl: Makefile.PL 24 $(PERL) Makefile.PL MAKEFILE=$@ 21 tmp: 22 $(RM) -r $(build_dir) 23 $(INSTALL) -d $(build_dir) 24 cp -p Makefile.PL $(build_dir)/Makefile.PL 25 tar -C $(srcdir) -clf - . | tar -C $(build_dir) -xpf - 26 (cd $(build_dir); $(PERL) Makefile.PL) 25 27 26 install: Makefile.perl27 $(MAKE) - f Makefile.perl install28 install: 29 $(MAKE) -C $(build_dir) install_perl 28 30 29 test: Makefile.perl 30 LD_LIBRARY_PATH=`pwd`/../../src/core $(MAKE) -f Makefile.perl test 31 32 clean: Makefile.perl 33 $(MAKE) -f Makefile.perl clean 31 clean: 32 $(MAKE) -C $(build_dir) clean 33 $(RM) -rf $(build_dir) 34 34 35 35 distclean: clean 36 $(RM) Makefile.perl*37 36
Note: See TracChangeset
for help on using the changeset viewer.