Integrate mainline (mostly) utf8.c does not compile.
[p5sagit/p5-mst-13.2.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 $(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: $(obj) perl$(OBJ_EXT) miniperlmain$(OBJ_EXT) opmini$(OBJ_EXT)
130         $(CC) $(CLDFLAGS) -o miniperl miniperlmain$(OBJ_EXT) perl$(OBJ_EXT) `echo $(obj)|sed -e 's/\bop\./opmini./g'` $(libs) -Zmap -Zlinker /map/PM:VIO
131         @./miniperl -w -Ilib -MExporter -e '<?>' || $(MAKE) minitest
132
133 depend: os2ish.h dlfcn.h os2thread.h os2.c
134
135 # Stupid make? Needed...
136 os2$(OBJ_EXT) : os2.c
137
138 os2.c: os2/os2.c os2ish.h
139         cp -f $< $@
140
141 dl_os2.c: os2/dl_os2.c os2ish.h
142         cp -f $< $@
143
144 os2ish.h: os2/os2ish.h
145         cp -f $< $@
146
147 os2thread.h: os2/os2thread.h
148         cp -f $< $@
149
150 dlfcn.h: os2/dlfcn.h
151         cp -f $< $@
152
153 # Non-Forking dynamically loaded perl
154
155 perl___$(EXE_EXT) perl___: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
156         $(SHRPENV) $(CC) $(CLDFLAGS) $(CCDLFLAGS) -o perl___ perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LIBPERL) `cat ext.libs` $(libs) -Zlinker /map/PM:VIO
157
158 # This one is compiled -Zsys, so cannot do many things:
159
160 # Remove -Zcrtdll
161 STAT_CLDFLAGS = -Zexe -Zomf -Zmt -Zstack 32000
162
163 # Non-forking dynamically loaded perl with a wrong CRT library:
164
165 perl_stat: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
166         $(SHRPENV) $(CC) $(STAT_CLDFLAGS) $(CCDLFLAGS) -o $@ perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LIBPERL) `cat ext.libs` $(libs) -Zlinker /map/PM:VIO
167
168 # Remove -Zcrtdll, add -Zsys
169 SYS_CLDFLAGS = $(STAT_CLDFLAGS) -Zsys
170
171 # Non-Forking dynamically loaded perl without EMX - so with wrong CRT library
172
173 perl_sys: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
174         $(SHRPENV) $(CC) $(SYS_CLDFLAGS) $(CCDLFLAGS) -o $@ perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LIBPERL) `cat ext.libs` $(libs) -Zlinker /map/PM:VIO
175
176 installcmd : 
177         @perl -e 'die qq{Give the option INSTALLCMDDIR=... to make!} if $$ARGV[0] eq ""' $(INSTALLCMDDIR)
178         ./miniperl -Ilib os2/perl2cmd.pl $(INSTALLCMDDIR)
179
180 # Aout section:
181
182 aout_obj = $(addsuffix $(AOUT_OBJ_EXT),$(basename $(obj)))
183 AOUT_DYNALOADER = $(addsuffix $(AOUT_LIB_EXT),$(basename $(DYNALOADER)))
184 aout_ext = $(dynamic_ext) $(AOUT_EXTRA_LIBS)
185 aout_static_ext = $(addsuffix $(AOUT_LIB_EXT),$(basename $(aout_ext)))
186 aout_static_lib = $(addsuffix $(LIB_EXT),$(basename $(aout_ext)))
187
188 aout_static_ext_dll = $(addsuffix $(AOUT_LIB_EXT),$(basename $(static_ext)))
189 DYNALOADER_OBJ = ext/DynaLoader/DynaLoader$(OBJ_EXT)
190 aout_static_ext_dll = $(addsuffix $(AOUT_LIB_EXT),$(basename $(static_ext)))
191 AOUT_DYNALOADER_OBJ = $(addsuffix $(AOUT_OBJ_EXT),$(basename $(DYNALOADER_OBJ)))
192
193 $(AOUT_DYNALOADER_OBJ) : $(DYNALOADER_OBJ)
194         emxaout -o $@ $<
195
196 $(DYNALOADER_OBJ) : $(DYNALOADER)
197         @sh -c true
198
199 $(AOUT_LIBPERL) : $(aout_obj) perl$(AOUT_OBJ_EXT)
200         rm -f $@
201         $(AOUT_AR) rcu $@ perl$(AOUT_OBJ_EXT) $(aout_obj)
202         cp $@ perl.a
203
204 .c$(AOUT_OBJ_EXT):
205         $(AOUT_CCCMD) $(PLDLFLAGS) -c $*.c
206
207 opmini$(AOUT_OBJ_EXT): op.c
208         $(AOUT_CCCMD) $(PLDLFLAGS) -DPERL_EXTERNAL_GLOB -o opmini$(AOUT_OBJ_EXT) -c op.c
209
210 perlmain(AOUT_OBJ_EXT): perlmain.c
211         $(AOUT_CCCMD_DLL) $(PLDLFLAGS) -c perlmain.c
212
213 aout_perlmain.c: miniperlmain.c config.sh makefile $(static_ext_autoinit)
214         sh writemain $(DYNALOADER) $(aout_static_lib) > tmp
215         sh mv-if-diff tmp aout_perlmain.c
216
217 _preplibrary = miniperl lib/Config.pm lib/lib.pm lib/re.pm
218
219 miniperl_: $& miniperlmain$(AOUT_OBJ_EXT) $(AOUT_LIBPERL) opmini$(AOUT_OBJ_EXT) $(_preplibrary)
220         $(CC) $(AOUT_CLDFLAGS) $(CCDLFLAGS) -o miniperl_ miniperlmain$(AOUT_OBJ_EXT) opmini$(AOUT_OBJ_EXT) $(AOUT_LIBPERL) $(libs)
221
222 # Forking statically loaded perl
223
224 # Need a miniperl_ dependency, since $(AOUT_DYNALOADER) is build via implicit
225 # rules, thus would not rebuild miniperl_ via an explicit rule
226
227 perl_$(EXE_EXT) perl_: $& miniperl_ aout_perlmain$(AOUT_OBJ_EXT) $(AOUT_LIBPERL) $(AOUT_DYNALOADER) $(aout_static_ext) ext.libs
228         $(CC) $(AOUT_CLDFLAGS) $(CCDLFLAGS) -o perl_ aout_perlmain$(AOUT_OBJ_EXT) $(AOUT_DYNALOADER) $(aout_static_ext) $(AOUT_LIBPERL) `cat ext.libs` $(libs)
229
230 # Remove -Zcrtdll
231 STAT_AOUT_CLDFLAGS = -Zexe -Zmt -Zstack 32000
232
233 # Forking dynamically loaded perl with a wrong CRT library:
234
235 perl_stat_aout$(EXE_EXT) perl_stat_aout: $& perlmain$(AOUT_OBJ_EXT) $(AOUT_DYNALOADER_OBJ) $(aout_static_ext_dll) $(AOUT_LIBPERL_DLL) ext.libs
236         $(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)
237
238 PERLREXX_DLL = perlrexx.dll
239
240 perl : perl__ perl___ $(PERLREXX_DLL)
241
242 # Dynamically loaded PM-application perl:
243
244 perl__$(EXE_EXT) perl__: $& perlmain$(OBJ_EXT) $(LIBPERL) $(DYNALOADER) $(static_ext) ext.libs
245         $(CC) $(CLDFLAGS) $(CCDLFLAGS) -o perl__ perlmain$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LIBPERL) `cat ext.libs` $(libs) -Zlinker /PM:PM
246
247 # Forking dynamically loaded perl:
248
249 perl$(EXE_EXT) perl: $& perlmain$(AOUT_OBJ_EXT) $(AOUT_DYNALOADER_OBJ) $(aout_static_ext_dll) $(AOUT_LIBPERL_DLL) ext.libs
250         $(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)
251
252 clean: aout_clean
253
254 aout_clean:
255         -rm *perl_.* *.o *.a lib/auto/*/*.a ext/*/Makefile.aout
256
257 aout_install: perl_ aout_install.perl
258
259 aout_install.perl: perl_ installperl
260         ./perl_ installperl
261
262 perlrexx: $(PERLREXX_DLL)
263         @sh -c true
264
265 perlrexx.c: os2/perlrexx.c
266         @cp -f os2/$@ $@
267
268 # Remove -Zexe, add -Zdll -Zso.  No stack needed
269 SO_CLDFLAGS = -Zdll -Zso -Zomf -Zmt -Zsys
270
271 # A callable-from-REXX DLL
272
273 $(PERLREXX_DLL): perlrexx$(OBJ_EXT) perlrexx.def
274         $(SHRPENV) $(CC) $(SO_CLDFLAGS) $(CCDLFLAGS) -o $@ perlrexx$(OBJ_EXT) $(DYNALOADER) $(static_ext) $(LIBPERL) `cat ext.libs` $(libs) perlrexx.def
275
276 perlrexx.def: miniperl $(_preplibrary)
277         echo    "LIBRARY 'perlrexx' INITINSTANCE TERMINSTANCE"  > tmp.def
278         echo    "DESCRIPTION '@#perl5-porters@perl.org:`miniperl -Ilib -MConfig -e 'print \$$]'`#@ REXX to Perl `miniperl -Ilib -MConfig -e 'print \$$Config{version}'` interface'" >> tmp.def
279         echo    "EXPORTS"                                       >> tmp.def
280         echo    '  "PERL"'                                      >> tmp.def
281         echo    '  "PERLTERM"'                                  >> tmp.def
282         echo    '  "PERLINIT"'                                  >> tmp.def
283         echo    '  "PERLEXIT"'                                  >> tmp.def
284         echo    '  "PERLEVAL"'                                  >> tmp.def
285         echo    '  "PERLLASTERROR"'                             >> tmp.def
286         echo    '  "PERLEVALSUBCOMMAND"'                        >> tmp.def
287         echo    '  "PERLEXPORTALL"'                             >> tmp.def
288         echo    '  "PERLDROPALL"'                               >> tmp.def
289         echo    '  "PERLDROPALLEXIT"'                           >> tmp.def
290         sh mv-if-diff tmp.def $@
291
292
293 perlrexx$(OBJ_EXT): perlrexx.c
294         $(SO_CCCMD) $(PLDLFLAGS) -c perlrexx.c
295
296 # To test with harness, one needed to HARNESS_IGNORE_EXITCODE=2
297
298 # Define to be empty to get a TTY test
299 REDIR_TEST = 2>&1 | tee 00_$@
300
301 test_prep_perl_: test_prep_pre miniperl_ ./perl_$(EXE_EXT)
302         PERL=./perl_ $(MAKE) _test_prep
303
304 test_prep_various: test_prep_pre miniperl $(dynamic_ext) $(TEST_PERL_DLL)
305
306 test_prep_perl_sys: test_prep_various ./perl_sys$(EXE_EXT)
307         PERL=./perl_sys $(MAKE) _test_prep
308
309 test_prep_perl___: test_prep_various ./perl___$(EXE_EXT)
310         PERL=./perl___ $(MAKE) _test_prep
311
312 test_prep_perl_stat: test_prep_various ./perl_stat$(EXE_EXT)
313         PERL=./perl_stat $(MAKE) _test_prep
314
315 test_prep_perl_stat_aout: test_prep_various ./perl_stat_aout$(EXE_EXT)
316         PERL=./perl_stat_aout $(MAKE) _test_prep
317
318 aout_test: test_prep_perl_
319         PERL=./perl_ $(MAKE) _test
320
321 aout_harness: test_prep_perl_
322         -PERL=./perl_ $(MAKE) TESTFILE=harness _test $(REDIR_TEST)
323
324 sys_test: test_prep_perl_sys
325         PERL=./perl_sys $(MAKE) _test
326
327 sys_harness: test_prep_perl_sys
328         -PERL=./perl_sys $(MAKE) TESTFILE=harness _test $(REDIR_TEST)
329
330 stat_test: test_prep_perl_stat
331         PERL=./perl_stat $(MAKE) _test
332
333 stat_harness: test_prep_perl_stat
334         -PERL=./perl_stat $(MAKE) TESTFILE=harness _test $(REDIR_TEST)
335
336 stat_aout_test: test_prep_perl_stat_aout
337         PERL=./perl_stat_aout $(MAKE) _test
338
339 stat_aout_harness: test_prep_perl_stat_aout
340         -PERL=./perl_stat_aout $(MAKE) TESTFILE=harness _test $(REDIR_TEST)
341
342 perl___test: test_prep_perl___
343         PERL=./perl___ $(MAKE) _test
344
345 perl___harness: test_prep_perl___
346         -PERL=./perl___ $(MAKE) TESTFILE=harness _test $(REDIR_TEST)
347
348 all_test: test aout_test perl___test sys_test stat_test stat_aout_test
349
350 all_harness: test_harness aout_harness perl___harness sys_harness stat_harness stat_aout_harness
351
352 !NO!SUBS!
353
354 # Now we need to find directories in ./ext/ which are up to 3 level deep
355 # Currently (2001/06) there is no directories 4 levels deep.
356 # (Only directories so that there is no Makefile.PL some levels up matter.)
357
358 dirs=''
359 ddirs=''
360 preci='ext/%/Makefile.aout '
361 for d in ext/*
362 do
363         # echo "...Checking '$d'..."
364         # skip the kid if the parent exists: cmp SDBFile/sdbm, done by MakeMaker
365         if test ! -e "$d/Makefile.PL"; then
366             # Need to treat subdirectories manually
367             # echo "...Checking subdirs of '$d'..."
368             d_treated=''
369             for dd in $d/*
370             do
371                 if test ! -d $dd; then
372                     continue
373                 fi
374                 if test -e "$dd/Makefile.PL"; then
375                     if test "X$d_treated" = "X"; then
376                         d_treated=1
377                         # echo "...Found parentless 2-level deep Makefile.PL's in $d/*/:" $d/*/Makefile.PL
378                         dirs="$dirs $d"
379                         preci="$preci $d/%/Makefile.aout"
380                     fi
381                 else
382                     # Need to treat subsubdirectories manually
383                     dd_treated=''
384                     for ddd in $dd/*
385                     do
386                         if test ! -d $ddd; then
387                             continue
388                         fi
389                         if test -e "$ddd/Makefile.PL"; then
390                             if test "X$dd_treated" = "X"; then
391                                 dd_treated=1
392                                 # echo "...Found parentless 3-level deep Makefile.PL's in $dd/*/:" $dd/*/Makefile.PL
393                                 ddirs="$ddirs $dd"
394                                 preci="$preci $dd/%/Makefile.aout"
395                             fi
396                         fi
397                     done
398                 fi
399            done
400         fi
401 done
402
403 $spitshell >>Makefile <<!GROK!THIS!
404 .PRECIOUS : $preci
405
406 # Set this to FORCE to force a rebuilt of aout extensions
407
408 AOUT_EXTENSIONS_FORCE = 
409
410 !GROK!THIS!
411
412 for d in $ddirs
413 do
414     # Remove the leading component ext/
415     dd=`dirname $d`
416     pp=`basename $dd`
417     p=$pp/`basename $d`
418     $spitshell >>Makefile <<!GROK!THIS!
419 lib/auto/$p/*/%.a : $d/%/Makefile.aout
420         @cd $d/\$(basename \$(notdir \$@)) ; make -f Makefile.aout config || echo "\$(MAKE) config failed, continuing anyway..."
421         cd $d/\$(basename \$(notdir \$@)) ; make -f Makefile.aout LINKTYPE=static CCCDLFLAGS=
422
423 $d/%/Makefile.aout : miniperl_ \$(_preplibrary) \$(AOUT_EXTENSIONS_FORCE)
424         cd \$(dir \$@) ; ../../../../miniperl_ -I ../../../../lib Makefile.PL FIRST_MAKEFILE=Makefile.aout INSTALLDIRS=perl 
425
426 !GROK!THIS!
427
428 done
429
430 for d in $dirs
431 do
432     p=`basename $d`
433     $spitshell >>Makefile <<!GROK!THIS!
434 lib/auto/$p/*/%.a : $d/%/Makefile.aout
435         @cd $d/\$(basename \$(notdir \$@)) ; make -f Makefile.aout config || echo "\$(MAKE) config failed, continuing anyway..."
436         cd $d/\$(basename \$(notdir \$@)) ; make -f Makefile.aout LINKTYPE=static CCCDLFLAGS=
437
438 $d/%/Makefile.aout : miniperl_ \$(_preplibrary) \$(AOUT_EXTENSIONS_FORCE)
439         cd \$(dir \$@) ; ../../../miniperl_ -I ../../../lib Makefile.PL FIRST_MAKEFILE=Makefile.aout INSTALLDIRS=perl 
440
441 !GROK!THIS!
442
443 done
444
445 # We need to special-case OS2/DLL/DLL.a, since the recipe above will
446 # try to find it in ext/OS2/DLL
447
448 $spitshell >>Makefile <<'!NO!SUBS!'
449 lib/auto/OS2/DLL/DLL.a : lib/auto/OS2/REXX/REXX.a
450         @sh -c true
451
452 lib/auto/*/%.a : ext/%/Makefile.aout
453         @cd ext/$(basename $(notdir $@)) ; make -f Makefile.aout config || echo "\$(MAKE) config failed, continuing anyway..."
454         cd ext/$(basename $(notdir $@)) ; make -f Makefile.aout LINKTYPE=static CCCDLFLAGS=
455
456 ext/%/Makefile.aout : miniperl_ $(_preplibrary) $(AOUT_EXTENSIONS_FORCE)
457         cd $(dir $@) ; ../../miniperl_ -I ../../lib Makefile.PL FIRST_MAKEFILE=Makefile.aout INSTALLDIRS=perl 
458
459 !NO!SUBS!