| 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.* |