This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
1. Work around the bug fixed by #20587 (because it's in 5.8.0).
[perl5.git] / os2 / 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: 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=''
18 aout_extra_sep=''
19 for xxx in $aout_extra_static_ext; do
20   aout_extra_dir=`echo "$xxx" | sed -e 's/::/\//g'`
21   aout_extra_lib="lib/auto/$aout_extra_dir/"`basename "$aout_extra_dir"`
22   aout_extra_libs="$aout_extra_libs$aout_extra_sep$aout_extra_lib$aout_lib_ext"
23   aout_extra_sep=' '
24 done
25
26 $spitshell >>Makefile <<!GROK!THIS!
27
28 PERL_FULLVERSION = $perl_fullversion
29
30 AOUT_OPTIMIZE   = \$(OPTIMIZE)
31 AOUT_CCCMD      = \$(CC) -DPERL_CORE $aout_ccflags \$(AOUT_OPTIMIZE)
32 AOUT_AR         = $aout_ar
33 AOUT_OBJ_EXT    = $aout_obj_ext
34 AOUT_LIB_EXT    = $aout_lib_ext
35 AOUT_LIBPERL    = libperl$aout_lib_ext
36 AOUT_CLDFLAGS   = $aout_ldflags
37
38 AOUT_LIBPERL_DLL        = libperl_dll$aout_lib_ext
39 AOUT_CCCMD_DLL  = \$(CC) -DDOSISH -DOS2=2 -DEMBED -I. -DPACK_MALLOC -DDEBUGGING_MSTATS -DTWO_POT_OPTIMIZE -DPERL_EMERGENCY_SBRK
40 AOUT_CLDFLAGS_DLL       = -Zexe -Zmt -Zcrtdll -Zstack 32000
41
42 # No -DPERL_CORE
43 SO_CCCMD        = \$(CC) $ccflags \$(OPTIMIZE)
44
45 LD_OPT          = \$(OPTIMIZE)
46 PERL_DLL_LD_OPT = -Zmap -Zlinker /map
47
48 PERL_DLL_BASE   = perl$dll_post
49 PERL_DLL        = \$(PERL_DLL_BASE)\$(DLSUFFIX)
50 TEST_PERL_DLL   = perl_dll_t
51 CONFIG_ARGS     = $config_args
52 AOUT_EXTRA_LIBS = $aout_extra_libs
53
54 !GROK!THIS!
55
56 $spitshell >>Makefile <<'!NO!SUBS!'
57 PREPLIBRARY_LIBPERL = $(LIBPERL)
58 $(LIBPERL): perl.imp $(PERL_DLL) perl5.def libperl_override.lib
59         emximp -o $(LIBPERL) perl.imp
60         cp $(LIBPERL) perl.lib
61
62 libperl_override.imp: os2/os2add.sym miniperl
63         ./miniperl -wnle 'print "$$_\t$(PERL_DLL_BASE)\t$$_\t?"' os2/os2add.sym > tmp.imp
64         echo    'strdup $(PERL_DLL_BASE)        Perl_strdup     ?' >> tmp.imp
65         echo    'putenv $(PERL_DLL_BASE)        Perl_putenv     ?' >> tmp.imp
66         sh mv-if-diff tmp.imp $@
67
68 libperl_override.lib: libperl_override.imp
69         emximp -o $@ libperl_override.imp
70
71 $(AOUT_LIBPERL_DLL): perl.imp $(PERL_DLL) perl5.def
72         emximp -o $(AOUT_LIBPERL_DLL) perl.imp
73
74 perl.imp: perl5.def
75         emximp -o perl.imp perl5.def
76         echo    'emx_calloc             emxlibcm        400     ?' >> $@
77         echo    'emx_free               emxlibcm        401     ?' >> $@
78         echo    'emx_malloc             emxlibcm        402     ?' >> $@
79         echo    'emx_realloc            emxlibcm        403     ?' >> $@
80
81 .PHONY: perl_dll installcmd aout_clean aout_install aout_install.perl \
82         perlrexx test_prep_perl_ test_prep_perl_sys test_prep_perl_stat \
83         test_prep_perl_stat_aout test_prep_various \
84         stat_aout_harness aout_harness stat_harness sys_harness all_harness \
85         stat_aout_test aout_test stat_test sys_test all_test
86
87 perl_dll: $(PERL_DLL)
88
89 perl_dll_t: t/$(PERL_DLL)
90
91 t/$(PERL_DLL): $(PERL_DLL)
92         $(LNS) $(PERL_DLL) t/$(PERL_DLL)
93
94 $(PERL_DLL): $(obj) perl5.def perl$(OBJ_EXT)
95         $(LD) $(LD_OPT) $(LDDLFLAGS) $(PERL_DLL_LD_OPT) -o $@ perl$(OBJ_EXT) $(obj) $(libs) perl5.def || ( rm $(PERL_DLL) && sh -c false )
96
97 perl5.olddef: perl.linkexp
98         echo "LIBRARY '$(PERL_DLL_BASE)' INITINSTANCE TERMINSTANCE"     > $@
99         echo DESCRIPTION "'Perl interpreter v$(PERL_FULLVERSION), export autogenerated'"        >>$@
100         echo STACKSIZE 32768                            >>$@
101         echo CODE LOADONCALL                            >>$@
102         echo DATA LOADONCALL NONSHARED MULTIPLE         >>$@
103         echo EXPORTS                                    >>$@
104 !NO!SUBS!
105
106 if [ ! -z "$myttyname" ] ; then
107   $spitshell >>Makefile <<'!NO!SUBS!'
108         echo '  "ttyname"'                              >>$@
109 !NO!SUBS!
110 fi
111
112 $spitshell >>Makefile <<'!NO!SUBS!'
113         cat perl.linkexp        >>$@
114
115 #       grep -v '"\(malloc\|realloc\|free\)"' perl.linkexp      >>$@
116
117
118 perl.exports: perl.exp EXTERN.h perl.h
119         (echo "#include \"EXTERN.h\" \n#include \"perl.h\" \n#include \"perl.exp\"";    \
120          echo "malloc\nrealloc\ncalloc\nfree") | \
121                 $(CC) -DEMBED  -E - | \
122                 awk '{if ($$2 == "") print $$1}' | sort | uniq > $@
123
124 perl.linkexp: perl.exports perl.map  os2/os2.sym
125         cat perl.exports os2/os2.sym perl.map | sort | uniq -d | sed -e 's/\w\+/  "\0"/' > perl.linkexp
126
127 # We link miniperl statically, since .DLL depends on $(DYNALOADER) 
128
129 miniperl.map: miniperl
130
131 miniperl.exe: miniperl
132
133 miniperl: $(obj) perl$(OBJ_EXT) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT)
134         $(CC) $(CLDFLAGS) -o miniperl miniperlmain$(OBJ_EXT) perl$(OBJ_EXT) `echo $(obj)|sed -e 's/\bop\./opmini./g'` $(libs) -Zmap -Zlinker /map/PM:VIO
135         @./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
136
137 depend: os2ish.h dlfcn.h os2thread.h os2.c
138
139 # Stupid make? Needed...
140 os2$(OBJ_EXT) : os2.c
141
142 os2.c: os2/os2.c os2ish.h
143         cp -f $< $@
144
145 dl_os2.c: os2/dl_os2.c os2ish.h
146         cp -f $< $@
147
148 os2ish.h: os2/os2ish.h
149         cp -f $< $@
150
151 os2thread.h: os2/os2thread.h
152         cp -f $< $@
153
154 dlfcn.h: os2/dlfcn.h
155         cp -f $< $@
156
157 # Non-Forking dynamically loaded perl
158
159 perl___$(EXE_EXT) perl___: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
160         $(SHRPENV) $(CC) $(CLDFLAGS) $(CCDLFLAGS) -o perl___ perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LIBPERL) `cat ext.libs` $(libs) -Zlinker /map/PM:VIO
161
162 # This one is compiled -Zsys, so cannot do many things:
163
164 # Remove -Zcrtdll
165 STAT_CLDFLAGS = -Zexe -Zomf -Zmt -Zstack 32000
166
167 # Non-forking dynamically loaded perl with a wrong CRT library:
168
169 perl_stat: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
170         $(SHRPENV) $(CC) $(STAT_CLDFLAGS) $(CCDLFLAGS) -o $@ perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LIBPERL) `cat ext.libs` $(libs) -Zlinker /map/PM:VIO
171
172 # Remove -Zcrtdll, add -Zsys
173 SYS_CLDFLAGS = $(STAT_CLDFLAGS) -Zsys
174
175 # Non-Forking dynamically loaded perl without EMX - so with wrong CRT library
176
177 perl_sys: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
178         $(SHRPENV) $(CC) $(SYS_CLDFLAGS) $(CCDLFLAGS) -o $@ perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LIBPERL) `cat ext.libs` $(libs) -Zlinker /map/PM:VIO
179
180 installcmd : 
181         @perl -e 'die qq{Give the option INSTALLCMDDIR=... to make!} if $$ARGV[0] eq ""' $(INSTALLCMDDIR)
182         ./miniperl -Ilib os2/perl2cmd.pl $(INSTALLCMDDIR)
183
184 # Aout section:
185
186 aout_obj = $(addsuffix $(AOUT_OBJ_EXT),$(basename $(obj)))
187 AOUT_DYNALOADER = $(addsuffix $(AOUT_LIB_EXT),$(basename $(DYNALOADER)))
188 aout_ext = $(dynamic_ext) $(AOUT_EXTRA_LIBS)
189 aout_static_ext = $(addsuffix $(AOUT_LIB_EXT),$(basename $(aout_ext)))
190 aout_static_lib = $(addsuffix $(LIB_EXT),$(basename $(aout_ext)))
191
192 aout_static_ext_dll = $(addsuffix $(AOUT_LIB_EXT),$(basename $(static_ext)))
193 DYNALOADER_OBJ = ext/DynaLoader/DynaLoader$(OBJ_EXT)
194 aout_static_ext_dll = $(addsuffix $(AOUT_LIB_EXT),$(basename $(static_ext)))
195 AOUT_DYNALOADER_OBJ = $(addsuffix $(AOUT_OBJ_EXT),$(basename $(DYNALOADER_OBJ)))
196
197 $(AOUT_DYNALOADER_OBJ) : $(DYNALOADER_OBJ)
198         emxaout -o $@ $<
199
200 $(DYNALOADER_OBJ) : $(DYNALOADER)
201         @sh -c true
202
203 $(AOUT_LIBPERL) : $(aout_obj) perl$(AOUT_OBJ_EXT)
204         rm -f $@
205         $(AOUT_AR) rcu $@ perl$(AOUT_OBJ_EXT) $(aout_obj)
206         cp $@ perl.a
207
208 .c$(AOUT_OBJ_EXT):
209         $(AOUT_CCCMD) $(PLDLFLAGS) -c $*.c
210
211 opmini$(AOUT_OBJ_EXT): op.c
212         $(AOUT_CCCMD) $(PLDLFLAGS) -DPERL_EXTERNAL_GLOB -o opmini$(AOUT_OBJ_EXT) -c op.c
213
214 perlmain(AOUT_OBJ_EXT): perlmain.c
215         $(AOUT_CCCMD_DLL) $(PLDLFLAGS) -c perlmain.c
216
217 aout_perlmain.c: miniperlmain.c config.sh makefile $(static_ext_autoinit)
218         sh writemain $(DYNALOADER) $(aout_static_lib) > tmp
219         sh mv-if-diff tmp aout_perlmain.c
220
221 _preplibrary = miniperl lib/Config.pm lib/lib.pm lib/re.pm
222
223 miniperl_: $& miniperlmain$(AOUT_OBJ_EXT) $(AOUT_LIBPERL) opmini$(AOUT_OBJ_EXT) $(_preplibrary)
224         $(CC) $(AOUT_CLDFLAGS) $(CCDLFLAGS) -o miniperl_ miniperlmain$(AOUT_OBJ_EXT) opmini$(AOUT_OBJ_EXT) $(AOUT_LIBPERL) $(libs)
225
226 # Forking statically loaded perl
227
228 # Need a miniperl_ dependency, since $(AOUT_DYNALOADER) is build via implicit
229 # rules, thus would not rebuild miniperl_ via an explicit rule
230
231 perl_$(EXE_EXT) perl_: $& miniperl_ aout_perlmain$(AOUT_OBJ_EXT) $(AOUT_LIBPERL) $(AOUT_DYNALOADER) $(aout_static_ext) ext.libs
232         $(CC) $(AOUT_CLDFLAGS) $(CCDLFLAGS) -o perl_ aout_perlmain$(AOUT_OBJ_EXT) $(AOUT_DYNALOADER) $(aout_static_ext) $(AOUT_LIBPERL) `cat ext.libs` $(libs)
233
234 # Remove -Zcrtdll
235 STAT_AOUT_CLDFLAGS = -Zexe -Zmt -Zstack 32000
236
237 # Forking dynamically loaded perl with a wrong CRT library:
238
239 perl_stat_aout$(EXE_EXT) perl_stat_aout: $& perlmain$(AOUT_OBJ_EXT) $(AOUT_DYNALOADER_OBJ) $(aout_static_ext_dll) $(AOUT_LIBPERL_DLL) ext.libs
240         $(SHRPENV) $(CC) $(STAT_AOUT_CLDFLAGS) $(CCDLFLAGS) -o $@ perlmain$(AOUT_OBJ_EXT) $(AOUT_DYNALOADER_OBJ) $(aout_static_ext_dll) $(AOUT_LIBPERL_DLL) `cat ext.libs` $(libs)
241
242 PERLREXX_DLL = perlrexx.dll
243
244 perl : perl__ perl___ $(PERLREXX_DLL)
245
246 # Dynamically loaded PM-application perl:
247
248 perl__$(EXE_EXT) perl__: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
249         $(CC) $(CLDFLAGS) $(CCDLFLAGS) -o perl__ perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LIBPERL) `cat ext.libs` $(libs) -Zlinker /PM:PM
250
251 # Forking dynamically loaded perl:
252
253 perl$(EXE_EXT) perl: $& perlmain$(AOUT_OBJ_EXT) $(AOUT_DYNALOADER_OBJ) $(aout_static_ext_dll) $(AOUT_LIBPERL_DLL) ext.libs
254         $(CC) $(AOUT_CLDFLAGS_DLL) $(CCDLFLAGS) -o perl perlmain$(AOUT_OBJ_EXT) $(AOUT_DYNALOADER_OBJ) $(aout_static_ext_dll) $(AOUT_LIBPERL_DLL) `cat ext.libs` $(libs)
255
256 clean: aout_clean
257
258 aout_clean:
259         -rm *perl_.* *.o *.a lib/auto/*/*.a ext/*/Makefile.aout
260
261 aout_install: perl_ aout_install.perl
262
263 aout_install.perl: perl_ installperl
264         ./perl_ installperl
265
266 perlrexx: $(PERLREXX_DLL)
267         @sh -c true
268
269 perlrexx.c: os2/perlrexx.c
270         @cp -f os2/$@ $@
271
272 # Remove -Zexe, add -Zdll -Zso.  No stack needed
273 SO_CLDFLAGS = -Zdll -Zso -Zomf -Zmt -Zsys
274
275 # A callable-from-REXX DLL
276
277 $(PERLREXX_DLL): perlrexx$(OBJ_EXT) perlrexx.def
278         $(SHRPENV) $(CC) $(SO_CLDFLAGS) $(CCDLFLAGS) -o $@ perlrexx$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LIBPERL) `cat ext.libs` $(libs) perlrexx.def
279
280 perlrexx.def: miniperl $(_preplibrary)
281         echo    "LIBRARY 'perlrexx' INITINSTANCE TERMINSTANCE"  > tmp.def
282         echo    "DESCRIPTION '@#perl5-porters@perl.org:`miniperl -Ilib -MConfig -e 'print \$$]'`#@ REXX to Perl `miniperl -Ilib -MConfig -e 'print \$$Config{version}'` interface'" >> tmp.def
283         echo    "EXPORTS"                                       >> tmp.def
284         echo    '  "PERL"'                                      >> tmp.def
285         echo    '  "PERLTERM"'                                  >> tmp.def
286         echo    '  "PERLINIT"'                                  >> tmp.def
287         echo    '  "PERLEXIT"'                                  >> tmp.def
288         echo    '  "PERLEVAL"'                                  >> tmp.def
289         echo    '  "PERLLASTERROR"'                             >> tmp.def
290         echo    '  "PERLEVALSUBCOMMAND"'                        >> tmp.def
291         echo    '  "PERLEXPORTALL"'                             >> tmp.def
292         echo    '  "PERLDROPALL"'                               >> tmp.def
293         echo    '  "PERLDROPALLEXIT"'                           >> tmp.def
294         sh mv-if-diff tmp.def $@
295
296
297 perlrexx$(OBJ_EXT): perlrexx.c
298         $(SO_CCCMD) $(PLDLFLAGS) -c perlrexx.c
299
300 # To test with harness, one needed to HARNESS_IGNORE_EXITCODE=2
301
302 # Define to be empty to get a TTY test
303 REDIR_TEST = 2>&1 | tee 00_$@
304
305 test_prep_perl_: test_prep_pre miniperl_ ./perl_$(EXE_EXT)
306         PERL=./perl_ $(MAKE) _test_prep
307
308 test_prep_various: test_prep_pre miniperl $(dynamic_ext) $(TEST_PERL_DLL)
309
310 test_prep_perl_sys: test_prep_various ./perl_sys$(EXE_EXT)
311         PERL=./perl_sys $(MAKE) _test_prep
312
313 test_prep_perl___: test_prep_various ./perl___$(EXE_EXT)
314         PERL=./perl___ $(MAKE) _test_prep
315
316 test_prep_perl_stat: test_prep_various ./perl_stat$(EXE_EXT)
317         PERL=./perl_stat $(MAKE) _test_prep
318
319 test_prep_perl_stat_aout: test_prep_various ./perl_stat_aout$(EXE_EXT)
320         PERL=./perl_stat_aout $(MAKE) _test_prep
321
322 aout_test: test_prep_perl_
323         PERL=./perl_ $(MAKE) _test
324
325 aout_harness: test_prep_perl_
326         -PERL=./perl_ $(MAKE) TESTFILE=harness _test $(REDIR_TEST)
327
328 sys_test: test_prep_perl_sys
329         PERL=./perl_sys $(MAKE) _test
330
331 sys_harness: test_prep_perl_sys
332         -PERL=./perl_sys $(MAKE) TESTFILE=harness _test $(REDIR_TEST)
333
334 stat_test: test_prep_perl_stat
335         PERL=./perl_stat $(MAKE) _test
336
337 stat_harness: test_prep_perl_stat
338         -PERL=./perl_stat $(MAKE) TESTFILE=harness _test $(REDIR_TEST)
339
340 stat_aout_test: test_prep_perl_stat_aout
341         PERL=./perl_stat_aout $(MAKE) _test
342
343 stat_aout_harness: test_prep_perl_stat_aout
344         -PERL=./perl_stat_aout $(MAKE) TESTFILE=harness _test $(REDIR_TEST)
345
346 perl___test: test_prep_perl___
347         PERL=./perl___ $(MAKE) _test
348
349 perl___harness: test_prep_perl___
350         -PERL=./perl___ $(MAKE) TESTFILE=harness _test $(REDIR_TEST)
351
352 all_test: test aout_test perl___test sys_test stat_test stat_aout_test
353
354 all_harness: test_harness aout_harness perl___harness sys_harness stat_harness stat_aout_harness
355
356 !NO!SUBS!
357
358 # Now we need to find directories in ./ext/ which are up to 3 level deep
359 # Currently (2001/06) there is no directories 4 levels deep.
360 # (Only directories so that there is no Makefile.PL some levels up matter.)
361
362 dirs=''
363 ddirs=''
364 preci='ext/%/Makefile.aout '
365 for d in ext/*
366 do
367         # echo "...Checking '$d'..."
368         # skip the kid if the parent exists: cmp SDBFile/sdbm, done by MakeMaker
369         if test ! -e "$d/Makefile.PL"; then
370             # Need to treat subdirectories manually
371             # echo "...Checking subdirs of '$d'..."
372             d_treated=''
373             for dd in $d/*
374             do
375                 if test ! -d $dd; then
376                     continue
377                 fi
378                 if test -e "$dd/Makefile.PL"; then
379                     if test "X$d_treated" = "X"; then
380                         d_treated=1
381                         # echo "...Found parentless 2-level deep Makefile.PL's in $d/*/:" $d/*/Makefile.PL
382                         dirs="$dirs $d"
383                         preci="$preci $d/%/Makefile.aout"
384                     fi
385                 else
386                     # Need to treat subsubdirectories manually
387                     dd_treated=''
388                     for ddd in $dd/*
389                     do
390                         if test ! -d $ddd; then
391                             continue
392                         fi
393                         if test -e "$ddd/Makefile.PL"; then
394                             if test "X$dd_treated" = "X"; then
395                                 dd_treated=1
396                                 # echo "...Found parentless 3-level deep Makefile.PL's in $dd/*/:" $dd/*/Makefile.PL
397                                 ddirs="$ddirs $dd"
398                                 preci="$preci $dd/%/Makefile.aout"
399                             fi
400                         fi
401                     done
402                 fi
403            done
404         fi
405 done
406
407 $spitshell >>Makefile <<!GROK!THIS!
408 .PRECIOUS : $preci
409
410 # Set this to FORCE to force a rebuilt of aout extensions
411
412 AOUT_EXTENSIONS_FORCE = 
413
414 !GROK!THIS!
415
416 for d in $ddirs
417 do
418     # Remove the leading component ext/
419     dd=`dirname $d`
420     pp=`basename $dd`
421     p=$pp/`basename $d`
422     $spitshell >>Makefile <<!GROK!THIS!
423 lib/auto/$p/*/%.a : $d/%/Makefile.aout
424         @cd $d/\$(basename \$(notdir \$@)) ; make -f Makefile.aout config || echo "\$(MAKE) config failed, continuing anyway..."
425         cd $d/\$(basename \$(notdir \$@)) ; make -f Makefile.aout LINKTYPE=static CCCDLFLAGS=
426
427 $d/%/Makefile.aout : miniperl_ \$(_preplibrary) \$(AOUT_EXTENSIONS_FORCE)
428         cd \$(dir \$@) ; ../../../../miniperl_ -I ../../../../lib Makefile.PL FIRST_MAKEFILE=Makefile.aout INSTALLDIRS=perl PERL_CORE=1
429
430 !GROK!THIS!
431
432 done
433
434 for d in $dirs
435 do
436     p=`basename $d`
437     $spitshell >>Makefile <<!GROK!THIS!
438 lib/auto/$p/*/%.a : $d/%/Makefile.aout
439         @cd $d/\$(basename \$(notdir \$@)) ; make -f Makefile.aout config || echo "\$(MAKE) config failed, continuing anyway..."
440         cd $d/\$(basename \$(notdir \$@)) ; make -f Makefile.aout LINKTYPE=static CCCDLFLAGS=
441
442 $d/%/Makefile.aout : miniperl_ \$(_preplibrary) \$(AOUT_EXTENSIONS_FORCE)
443         cd \$(dir \$@) ; ../../../miniperl_ -I ../../../lib Makefile.PL FIRST_MAKEFILE=Makefile.aout INSTALLDIRS=perl PERL_CORE=1
444
445 !GROK!THIS!
446
447 done
448
449 # We need to special-case OS2/DLL/DLL.a, since the recipe above will
450 # try to find it in ext/OS2/DLL
451
452 $spitshell >>Makefile <<'!NO!SUBS!'
453 lib/auto/OS2/DLL/DLL.a : lib/auto/OS2/REXX/REXX.a
454         @sh -c true
455
456 lib/auto/*/%.a : ext/%/Makefile.aout
457         @cd ext/$(basename $(notdir $@)) ; make -f Makefile.aout config || echo "\$(MAKE) config failed, continuing anyway..."
458         cd ext/$(basename $(notdir $@)) ; make -f Makefile.aout LINKTYPE=static CCCDLFLAGS=
459
460 ext/%/Makefile.aout : miniperl_ $(_preplibrary) $(AOUT_EXTENSIONS_FORCE)
461         cd $(dir $@) ; ../../miniperl_ -I ../../lib Makefile.PL FIRST_MAKEFILE=Makefile.aout INSTALLDIRS=perl PERL_CORE=1
462
463 !NO!SUBS!