[perl #26959] fix memory leak in @_ = ...; goto &sub
[p5sagit/p5-mst-13.2.git] / cygwin / Makefile.SHs
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: libperls.a (for static linking),
7 # ld2, perlld (dynamic linking tools)
8 #
9
10 #! /bin/sh
11 case $PERL_CONFIG_SH in
12 '')
13         if test -f config.sh; then TOP=.;
14         elif test -f ../config.sh; then TOP=..;
15         elif test -f ../../config.sh; then TOP=../..;
16         elif test -f ../../../config.sh; then TOP=../../..;
17         elif test -f ../../../../config.sh; then TOP=../../../..;
18         else
19                 echo "Can't find config.sh."; exit 1
20         fi
21         . $TOP/config.sh
22         ;;
23 esac
24
25 addtopath=`pwd`
26 $spitshell >>Makefile <<!GROK!THIS!
27
28 cygwin.c: cygwin/cygwin.c
29         \$(LNS) cygwin/cygwin.c
30
31 # shell script feeding perlld to decent perl
32 ld2: $& Makefile perlld ${src}/cygwin/ld2.in
33         @echo "extracting ld2 (with variable substitutions)"
34         @$sed s,@buildpath@,$addtopath,g <${src}/cygwin/ld2.in >ld2
35         @echo "installing ld2 into $installbin"
36 # install is included in Cygwin distributions, and we make a note of th
37 # requirement in the README.cygwin file. However, let's give them
38 # a warning.
39         @/usr/bin/install -c -m 755 ld2 ${installbin}/ld2
40         @if test ! -f  ${installbin}/ld2; then \
41                 echo "*************************************************" ; \
42                 echo "Make will probably fail in a few more steps." ; \
43                 echo "When it does, copy \"ld2\" to a directory in" ; \
44                 echo "your path, other than \".\"." ; \
45                 echo "\"/usr/local/bin\" or something similar will do." ; \
46                 echo "Then restart make." ; \
47                 echo "*************************************************" ; \
48         fi
49
50 !GROK!THIS!
51
52 $spitshell >>Makefile <<!GROK!THIS!
53
54 # perlld parameters
55 #
56 # these ones are mandatory
57 DLLWRAP = 'dllwrap'
58 VERSION = '$version'
59
60 # following are optional.
61 WRAPDRIVER = gcc
62 DLLTOOL = dlltool
63 EXPORT_ALL = 1
64
65 # if some of extensions are empty,
66 # no corresponding output will be done.
67 # most probably, you'd like to have an export library
68 DEF_EXT = .def
69 EXP_EXT = .exp
70
71 perlld: $& Makefile ${src}/cygwin/perlld.in
72         @echo "extracting perlld (with variable substitutions)"
73         @$sed -e s,@CC@,\${CC}, -e s,@DLLWRAP@,\${DLLWRAP},g \\
74         -e s,@WRAPDRIVER@,\${WRAPDRIVER},g -e s,@DLLTOOL@,\${DLLTOOL},g \\
75         -e s,@AS@,\${AS},g -e s,@EXPORT_ALL@,\${EXPORT_ALL},g \\
76         -e s,@DEF_EXT@,\${DEF_EXT},g -e s,@EXP_EXT@,\${EXP_EXT},g \\
77         -e s,@LIB_EXT@,\${LIB_EXT},g -e s,@VERSION@,\${VERSION},g \\
78         ${src}/cygwin/perlld.in >perlld
79
80 !GROK!THIS!
81
82 # make sure that all library names are not malformed
83 libperl=`echo $libperl|sed -e s,\\\..*,,`
84
85 linklibperl=-l`echo $libperl|sed -e s,^lib,,`
86
87 $spitshell >>Makefile <<!GROK!THIS!
88 LIBPERL = $libperl
89 LLIBPERL= $linklibperl
90 CLDFLAGS= -L$addtopath $ldflags
91 CAT = $cat
92 AWK = $awk
93 !GROK!THIS!
94
95 case "$useshrplib" in
96 true)
97         $spitshell >>Makefile <<'!NO!SUBS!'
98 cwobj = $(obj)
99
100 # override default rule (NB: make croaks!) to force dll usage
101 perlmain$(OBJ_EXT): perlmain.c
102         $(CCCMD) $(PLDLFLAGS) -DUSEIMPORTLIB $*.c
103
104 # library used to make statically linked executables
105 # miniperl is linked against it to avoid libperl.dll locking
106 $(LIBPERL)$(LIB_EXT): $& perl$(OBJ_EXT) $(cwobj)
107         $(AR) rcu $@ perl$(OBJ_EXT) $(cwobj)
108
109 # dll and import library
110 $(LIBPERL).dll$(LIB_EXT): $& perl$(OBJ_EXT) $(cwobj) ld2
111         $(LDLIBPTH) ld2 $(SHRPLDFLAGS) -o $(LIBPERL)$(DLSUFFIX) \
112         perl$(OBJ_EXT) $(cwobj) $(libs)
113
114 # How to build executables.
115
116 # The miniperl -w -MExporter line is a basic cheap test to catch errors
117 # before make goes on to run preplibrary and then MakeMaker on extensions.
118 # This is very handy because later errors are often caused by miniperl
119 # build problems but that's not obvious to the novice.
120 # The Module used here must not depend on Config or any extensions.
121
122 miniperl.exe \
123 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL)$(LIB_EXT) opmini$(OBJ_EXT)
124         $(LDLIBPTH) $(CC) $(CLDFLAGS) -o miniperl miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs)
125         $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
126
127 perl.exe \
128 perl: $& perlmain$(OBJ_EXT) $(LIBPERL).dll$(LIB_EXT) $(DYNALOADER) $(static_ext) ext.libs
129         $(SHRPENV) $(LDLIBPTH) $(CC) $(CLDFLAGS) $(CCDLFLAGS) -o perl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
130
131 pureperl: $& perlmain$(OBJ_EXT) $(LIBPERL).dll$(LIB_EXT) $(DYNALOADER) $(static_ext) ext.libs
132         $(SHRPENV) $(LDLIBPTH) purify $(CC) $(CLDFLAGS) $(CCDLFLAGS) -o pureperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
133
134 purecovperl: $& perlmain$(OBJ_EXT) $(LIBPERL).dll$(LIB_EXT) $(DYNALOADER) $(static_ext) ext.libs
135         $(SHRPENV) $(LDLIBPTH) purecov $(CC) $(CLDFLAGS) $(CCDLFLAGS) -o purecovperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
136
137 quantperl: $& perlmain$(OBJ_EXT) $(LIBPERL).dll$(LIB_EXT) $(DYNALOADER) $(static_ext) ext.libs
138         $(SHRPENV) $(LDLIBPTH) quantify $(CC) $(CLDFLAGS) $(CCDLFLAGS) -o quantperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
139
140 !NO!SUBS!
141         ;;
142 *)
143 $spitshell >>Makefile <<'!NO!SUBS!'
144 cwobj = $(obj)
145
146 # perl library
147 $(LIBPERL)$(LIB_EXT): $& perl$(OBJ_EXT) $(cwobj)
148         $(AR) rcu $@ perl$(OBJ_EXT) $(cwobj)
149
150 # How to build executables.
151
152 # The miniperl -w -MExporter line is a basic cheap test to catch errors
153 # before make goes on to run preplibrary and then MakeMaker on extensions.
154 # This is very handy because later errors are often caused by miniperl
155 # build problems but that's not obvious to the novice.
156 # The Module used here must not depend on Config or any extensions.
157
158 miniperl.exe \
159 miniperl: $& miniperlmain$(OBJ_EXT) $(LIBPERL)$(LIB_EXT) opmini$(OBJ_EXT)
160         $(LDLIBPTH) $(CC) $(CLDFLAGS) -o miniperl miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT) $(LLIBPERL) $(libs)
161         $(LDLIBPTH) ./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
162
163 perl.exe \
164 perl: $& perlmain$(OBJ_EXT) $(LIBPERL)$(LIB_EXT) $(DYNALOADER) $(static_ext) ext.libs
165         $(SHRPENV) $(LDLIBPTH) $(CC) $(CLDFLAGS) $(CCDLFLAGS) -o perl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) -Wl,-Bstatic $(LLIBPERL) -Wl,-Bdynamic `cat ext.libs` $(libs)
166
167 pureperl: $& perlmain$(OBJ_EXT) $(LIBPERL)$(LIB_EXT) $(DYNALOADER) $(static_ext) ext.libs
168         $(SHRPENV) $(LDLIBPTH) purify $(CC) $(CLDFLAGS) $(CCDLFLAGS) -o pureperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
169
170 purecovperl: $& perlmain$(OBJ_EXT) $(LIBPERL)$(LIB_EXT) $(DYNALOADER) $(static_ext) ext.libs
171         $(SHRPENV) $(LDLIBPTH) purecov $(CC) $(CLDFLAGS) $(CCDLFLAGS) -o purecovperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
172
173 quantperl: $& perlmain$(OBJ_EXT) $(LIBPERL)$(LIB_EXT) $(DYNALOADER) $(static_ext) ext.libs
174         $(SHRPENV) $(LDLIBPTH) quantify $(CC) $(CLDFLAGS) $(CCDLFLAGS) -o quantperl perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LLIBPERL) `cat ext.libs` $(libs)
175
176 !NO!SUBS!
177         ;;
178 esac
179
180 # libperl.a is _the_ library both in dll and static cases
181 # $(LIBPERL)$(LIB_EXT) expands to this name dependless of build model
182 #
183 # NOTE: The "-Wl,-Bstatic $(LLIBPERL) -Wl,-Bdynamic" is required to give
184 # the import library linking priority over the dynamic library, since both
185 # the .dll and .a are in the same directory.  When the new standard for
186 # naming import/dynamic/static libraries emerges this should be updated.
187 #
188 $spitshell >>Makefile <<'!NO!SUBS!'
189
190
191 !NO!SUBS!
192
193 # suid perl is removed - i've never seen suid scripts for win32
194
195 ##############################################
196 # additional targets
197
198 $spitshell >>Makefile <<'!NO!SUBS!'
199
200 DIST_DIRECTORY = .dist
201
202 distdir: miniperl
203         -mkdir $(DIST_DIRECTORY)
204         ./miniperl '-MExtUtils::Manifest' \
205         -e "ExtUtils::Manifest::manicopy(ExtUtils::Manifest::maniread(),'$(DIST_DIRECTORY)')"
206
207 !NO!SUBS!