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