| 1 | # This file is read by Makefile.SH to produce rules for $(LIBPERL) (and
|
|---|
| 2 | # some additional rules as well).
|
|---|
| 3 |
|
|---|
| 4 | # Rerun `sh Makefile.SH; make depend' after making any change.
|
|---|
| 5 |
|
|---|
| 6 | # Additional rules supported: perl_, aout_test, aout_install, use them
|
|---|
| 7 | # for a.out style perl (which may fork).
|
|---|
| 8 |
|
|---|
| 9 | perl_fullversion="5.00${PERL_VERSION}_$PERL_SUBVERSION"
|
|---|
| 10 | case "$archname" in
|
|---|
| 11 | *-thread*) perl_fullversion="${perl_fullversion}-threaded";;
|
|---|
| 12 | esac
|
|---|
| 13 |
|
|---|
| 14 | dll_post="`echo $perl_fullversion | sum | sed -e 's/^0*//' | awk '{print $1}'`"
|
|---|
| 15 | dll_post="`printf '%x' $dll_post | tr '[a-z]' '[A-Z]'`"
|
|---|
| 16 |
|
|---|
| 17 | aout_extra_libs=''
|
|---|
|
|---|