This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldelta: reimport the 5.15.x internals sections
[perl5.git] / x2p / Makefile.SH
1 case $PERL_CONFIG_SH in
2 '')
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=../../../..;
8         else
9                 echo "Can't find config.sh."; exit 1
10         fi
11         . $TOP/config.sh
12         ;;
13 esac
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.
16 case "$0" in
17 */Makefile.SH) cd `expr X$0 : 'X\(.*\)/'` ;;
18 Makefile.SH) ;;
19 *) case `pwd` in
20    */x2p) ;;
21    *) if test -d x2p; then cd x2p
22       else echo "Can't figure out where to write output."; exit 1
23           fi;;
24    esac;;
25 esac
26
27 echo "Extracting x2p/Makefile (with variable substitutions)"
28 rm -f Makefile
29
30 # The .PL extractions use the Cwd extension.  For statically-built
31 # perls, we need perl, not just miniperl.
32 case "$usedl" in
33     define) perl="../miniperl" ;;
34     *)      perl="../perl" ;;
35 esac
36
37 cat >Makefile <<!GROK!THIS!
38 # $RCSfile: Makefile.SH,v $$Revision: 4.1 $$Date: 92/08/07 18:29:07 $
39 #
40 # $Log: Makefile.SH,v $
41
42 CC = $cc
43 BYACC = $byacc
44 LDFLAGS = $ldflags
45 shellflags = $shellflags
46
47 libs = $perllibs
48
49 $make_set_make
50 # grrr
51 SHELL = $sh
52
53 # These variables may need to be manually set for non-Unix systems.
54 AR = $ar
55 EXE_EXT = $_exe
56 LIB_EXT = $_a
57 OBJ_EXT = $_o
58 PATH_SEP = $p_
59
60 FIRSTMAKEFILE = $firstmakefile
61
62 # how to tr(anslate) newlines
63
64 TRNL = '$trnl'
65
66 OPTIMIZE = $optimize
67
68 .SUFFIXES: .c \$(OBJ_EXT)
69
70 RUN = $run
71 PERL = $perl
72
73 !GROK!THIS!
74
75 cat >>Makefile <<'!NO!SUBS!'
76
77 REALPERL = ../perl
78 CCCMD = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $@`
79
80 public = a2p$(EXE_EXT) s2p find2perl
81
82 private = 
83
84 manpages = a2p.man s2p.man
85
86 util =
87
88 sh = Makefile.SH cflags.SH
89 shextract = Makefile cflags
90
91 pl = find2perl.PL s2p.PL
92 plextract = find2perl s2p
93 plexe = find2perl.exe s2p.exe
94 plc   = find2perl.c s2p.c
95 plm   = a2p.loadmap
96
97 addedbyconf = $(shextract) $(plextract)
98
99 h = EXTERN.h INTERN.h ../config.h ../handy.h hash.h a2p.h str.h util.h
100
101 c = hash.c str.c util.c walk.c
102
103 obj = hash$(OBJ_EXT) str$(OBJ_EXT) util$(OBJ_EXT) walk$(OBJ_EXT)
104
105 lintflags = -phbvxac
106
107
108 .c$(OBJ_EXT):
109         $(CCCMD) -DPERL_FOR_X2P $*.c
110
111 all: $(public) $(private) $(util)
112         @echo " "
113
114 a2p$(EXE_EXT): $(obj) a2p$(OBJ_EXT)
115         $(CC) -o a2p $(LDFLAGS) $(obj) a2p$(OBJ_EXT) $(libs)
116
117 # I now supply a2p.c with the kits, so the following section is
118 # used only if you force byacc to run by saying
119 #    make run_byacc
120 # byacc 1.8.2 or 1.9 are recommended.
121
122 run_byacc:      FORCE
123         @ echo Expect many shift/reduce and reduce/reduce conflicts
124         $(BYACC) a2p.y
125         rm -f a2p.c
126         sed -e 's/(yyn = yydefred\[yystate\])/((yyn = yydefred[yystate]))/' \
127             -e 's/(yys = getenv("YYDEBUG"))/((yys = getenv("YYDEBUG")))/' \
128             -e 's/^yyerrlab://' \
129             -e 's/^    goto yyerrlab;//' \
130             -e 's/^yynewerror://' \
131             -e 's/^    goto yynewerror;//' \
132             -e 's|^static char yysccsid\(.*\)|/* static char yysccsid\1 */|' \
133             -e 's/^\(char \*yyname\[\]\)/const \1/' \
134             -e 's/^\(char \*yyrule\[\]\)/const \1/' \
135             -e 's/^\(    register\) \(char \*yys;\)/\1 const \2/' \
136             < y.tab.c > a2p.c
137
138 FORCE:
139
140 # We don't want to regenerate a2p.c, but it might appear out-of-date
141 # after a patch is applied or a new distribution is made.
142 a2p.c: a2p.y
143         -@sh -c true
144
145 a2p$(OBJ_EXT): a2p.c a2py.c a2p.h EXTERN.h util.h INTERN.h \
146                 ../handy.h ../config.h str.h hash.h
147         $(CCCMD) a2p.c
148
149 clean:
150         rm -f a2p$(EXE_EXT) psed *$(OBJ_EXT) $(plexe) $(plc) $(plm)
151
152 distclean: veryclean
153
154 realclean: clean
155         -rmdir .depending
156         rm -f core $(addedbyconf) all
157         rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old
158
159 veryclean: realclean
160         rm -f *~ *.orig
161
162 # The following lint has practically everything turned on.  Unfortunately,
163 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
164 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
165 # for that spot.
166
167 lint:
168         lint $(lintflags) $(defs) $(c) > a2p.fuzz
169
170 depend: ../makedepend
171         sh ../makedepend MAKE=$(MAKE)
172
173 clist:
174         echo $(c) | tr ' ' $(TRNL) >.clist
175
176 hlist:
177         echo $(h) | tr ' ' $(TRNL) >.hlist
178
179 shlist:
180         echo $(sh) | tr ' ' $(TRNL) >.shlist
181
182 $(plextract):
183         $(RUN) $(PERL) -I../lib $@.PL
184
185 find2perl: find2perl.PL ../config.sh
186
187 s2p: s2p.PL ../config.sh
188
189 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
190 $(obj):
191         @ echo "You haven't done a "'"make depend" yet!'; exit 1
192 makedepend: depend
193 !NO!SUBS!
194 $eunicefix Makefile
195 case `pwd` in
196 *SH)
197     $rm -f ../Makefile
198     $ln Makefile ../Makefile
199     ;;
200 esac
201 rm -f $firstmakefile