3 if test -f config.sh; then TOP=.;
4 elif test -f ../config.sh; then TOP=..;
5 elif test -f ../../config.sh; then TOP=../..;
6 elif test -f ../../../config.sh; then TOP=../../..;
7 elif test -f ../../../../config.sh; then TOP=../../../..;
9 echo "Can't find config.sh."; exit 1
14 : This forces SH files to create target in same directory as SH file.
15 : This is so that make depend always knows where to find SH derivatives.
17 */Makefile.SH) cd `expr X$0 : 'X\(.*\)/'` ;;
21 *) if test -d x2p; then cd x2p
22 else echo "Can't figure out where to write output."; exit 1
27 echo "Extracting x2p/Makefile (with variable substitutions)"
29 cat >Makefile <<!GROK!THIS!
30 # $RCSfile: Makefile.SH,v $$Revision: 4.1 $$Date: 92/08/07 18:29:07 $
32 # $Log: Makefile.SH,v $
39 # XXX Perl malloc temporarily unusable (declaration collisions with
41 #mallocsrc = $mallocsrc
42 #mallocobj = $mallocobj
43 shellflags = $shellflags
51 # These variables may need to be manually set for non-Unix systems.
58 FIRSTMAKEFILE = $firstmakefile
60 # how to tr(anslate) newlines
64 .SUFFIXES: .c \$(OBJ_EXT)
68 cat >>Makefile <<'!NO!SUBS!'
71 CCCMD = `sh $(shellflags) cflags $@`
73 public = a2p s2p find2perl
77 manpages = a2p.man s2p.man
81 sh = Makefile.SH cflags.SH
82 shextract = Makefile cflags
84 pl = find2perl.PL s2p.PL
85 plextract = find2perl s2p
86 plexe = find2perl.exe s2p.exe
87 plc = find2perl.c s2p.c
90 addedbyconf = $(shextract) $(plextract)
92 h = EXTERN.h INTERN.h ../config.h ../handy.h hash.h a2p.h str.h util.h
94 c = hash.c $(mallocsrc) str.c util.c walk.c
96 obj = hash$(OBJ_EXT) $(mallocobj) str$(OBJ_EXT) util$(OBJ_EXT) walk$(OBJ_EXT)
102 $(CCCMD) -DPERL_FOR_X2P $*.c
104 all: $(public) $(private) $(util)
108 $(REALPERL) -I../lib ../utils/perlcc -regex 's/$$/.exe/' $(plextract) -prog -verbose dcf -log ../compilelog;
110 a2p: $(obj) a2p$(OBJ_EXT)
111 $(CC) -o a2p $(LDFLAGS) $(obj) a2p$(OBJ_EXT) $(libs)
113 # I now supply a2p.c with the kits, so the following section is
114 # used only if you force byacc to run by saying
118 @ echo Expect many shift/reduce and reduce/reduce conflicts
125 # We don't want to regenerate a2p.c, but it might appear out-of-date
126 # after a patch is applied or a new distribution is made.
130 a2p$(OBJ_EXT): a2p.c a2py.c a2p.h EXTERN.h util.h INTERN.h \
131 ../handy.h ../config.h str.h hash.h
132 $(CCCMD) $(LARGE) a2p.c
135 rm -f a2p *$(OBJ_EXT) $(plexe) $(plc) $(plm)
138 rm -f *.orig core $(addedbyconf) all malloc.c
139 rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old
141 # The following lint has practically everything turned on. Unfortunately,
142 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
143 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
147 lint $(lintflags) $(defs) $(c) > a2p.fuzz
149 depend: $(mallocsrc) ../makedepend
150 sh ../makedepend MAKE=$(MAKE)
153 echo $(c) | tr ' ' $(TRNL) >.clist
156 echo $(h) | tr ' ' $(TRNL) >.hlist
159 echo $(sh) | tr ' ' $(TRNL) >.shlist
161 # These should be automatically generated
164 ../miniperl -I../lib $@.PL
166 malloc.c: ../malloc.c
168 sed <../malloc.c >malloc.c \
169 -e 's/"EXTERN.h"/"..\/EXTERN.h"/' \
170 -e 's/"perl.h"/"..\/perl.h"/' \
171 -e 's/my_exit/exit/' \
172 -e 's/MUTEX_[A-Z_]*(&PL_malloc_mutex);//'
174 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
176 @ echo "You haven't done a "'"make depend" yet!'; exit 1
183 $ln Makefile ../Makefile