ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/staticperl/Makefile
Revision: 1.2
Committed: Thu Jun 30 15:22:25 2005 UTC (19 years, 2 months ago) by root
Branch: MAIN
Changes since 1.1: +3 -2 lines
Log Message:
*** empty log message ***

File Contents

# Content
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 (cd perl && $(MAKE))
12 #touch stamp.perl
13
14 stamp.perl.config:
15 (cd perl && sh Configure -desO $(PERLCONFIG))
16 touch $@
17
18 clean:
19 -(cd perl && $(MAKE) clean)
20 rm stamp.*