ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/staticperl/Makefile
Revision: 1.1
Committed: Thu Jun 30 14:54:50 2005 UTC (19 years, 2 months ago) by root
Branch: MAIN
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 PERLCONFIG = -Duselargefiles -Uuse64bitint -Uuse64bitall -Dusemymalloc \
2     -Ud_dosuid -Uusemallocwrap -Uusedl \
3     -Dprefix=/etc/staticperl/prefix \
4     -Uusethreads -Uuse5005threads -Uuseithreads -Uusemultiplicity -Umultiarch \
5     -Dcc=gcc -Doptimize="-O4 -funroll-loops" \
6     -Dlibs="-lm -lcrypt -lutil -lc"
7    
8     all: stamp.perl
9    
10     stamp.perl: stamp.perl.config
11     touch stamp.perl
12    
13     stamp.perl.config:
14     (cd perl && sh Configure -desO $(PERLCONFIG))
15     touch $@
16    
17     clean:
18     -(cd perl && make clean)
19     rm stamp.*