This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Merge support for UTF8 symbols
[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 # XXX Perl malloc temporarily unusable (declaration collisions with stdlib.h)
46 #mallocsrc = $mallocsrc
47 #mallocobj = $mallocobj
48 shellflags = $shellflags
49
50 libs = $perllibs
51
52 $make_set_make
53 # grrr
54 SHELL = $sh
55
56 # These variables may need to be manually set for non-Unix systems.
57 AR = $ar
58 EXE_EXT = $_exe
59 LIB_EXT = $_a
60 OBJ_EXT = $_o
61 PATH_SEP = $p_
62
63 FIRSTMAKEFILE = $firstmakefile
64
65 # how to tr(anslate) newlines
66
67 TRNL = '$trnl'
68
69 OPTIMIZE = $optimize
70
71 .SUFFIXES: .c \$(OBJ_EXT)
72
73 RUN = $run
74 PERL = $perl
75
76 !GROK!THIS!
77
78 cat >>Makefile <<'!NO!SUBS!'
79
80 REALPERL = ../perl
81 CCCMD = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $@`
82
83 public = a2p$(EXE_EXT) s2p find2perl
84
85 private = 
86
87 manpages = a2p.man s2p.man
88
89 util =
90
91 sh = Makefile.SH cflags.SH
92 shextract = Makefile cflags
93
94 pl = find2perl.PL s2p.PL
95 plextract = find2perl s2p
96 plexe = find2perl.exe s2p.exe
97 plc   = find2perl.c s2p.c
98 plm   = a2p.loadmap
99
100 addedbyconf = $(shextract) $(plextract)
101
102 h = EXTERN.h INTERN.h ../config.h ../handy.h hash.h a2p.h str.h util.h
103
104 c = hash.c $(mallocsrc) str.c util.c walk.c
105
106 obj = hash$(OBJ_EXT) $(mallocobj) str$(OBJ_EXT) util$(OBJ_EXT) walk$(OBJ_EXT)
107
108 lintflags = -phbvxac
109
110
111 .c$(OBJ_EXT):
112         $(CCCMD) -DPERL_FOR_X2P $*.c
113
114 all: $(public) $(private) $(util)
115         @echo " "
116
117 a2p$(EXE_EXT): $(obj) a2p$(OBJ_EXT)
118         $(CC) -o a2p $(LDFLAGS) $(obj) a2p$(OBJ_EXT) $(libs)
119
120 # I now supply a2p.c with the kits, so the following section is
121 # used only if you force byacc to run by saying
122 #    make run_byacc
123 # byacc 1.8.2 or 1.9 are recommended.
124
125 run_byacc:      FORCE
126         @ echo Expect many shift/reduce and reduce/reduce conflicts
127         $(BYACC) a2p.y
128         rm -f a2p.c
129         sed -e 's/(yyn = yydefred\[yystate\])/((yyn = yydefred[yystate]))/' \
130             -e 's/(yys = getenv("YYDEBUG"))/((yys = getenv("YYDEBUG")))/' \
131             -e 's/^yyerrlab://' \
132             -e 's/^    goto yyerrlab;//' \
133             -e 's/^yynewerror://' \
134             -e 's/^    goto yynewerror;//' \
135             -e 's|^static char yysccsid\(.*\)|/* static char yysccsid\1 */|' \
136             -e 's/^\(char \*yyname\[\]\)/const \1/' \
137             -e 's/^\(char \*yyrule\[\]\)/const \1/' \
138             -e 's/^\(    register\) \(char \*yys;\)/\1 const \2/' \
139             < y.tab.c > a2p.c
140
141 FORCE:
142
143 # We don't want to regenerate a2p.c, but it might appear out-of-date
144 # after a patch is applied or a new distribution is made.
145 a2p.c: a2p.y
146         -@sh -c true
147
148 a2p$(OBJ_EXT): a2p.c a2py.c a2p.h EXTERN.h util.h INTERN.h \
149                 ../handy.h ../config.h str.h hash.h
150         $(CCCMD) a2p.c
151
152 clean:
153         rm -f a2p$(EXE_EXT) psed *$(OBJ_EXT) $(plexe) $(plc) $(plm)
154
155 distclean: veryclean
156
157 realclean: clean
158         -rmdir .depending
159         rm -f core $(addedbyconf) all malloc.c
160         rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old
161
162 veryclean: realclean
163         rm -f *~ *.orig
164
165 # The following lint has practically everything turned on.  Unfortunately,
166 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
167 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
168 # for that spot.
169
170 lint:
171         lint $(lintflags) $(defs) $(c) > a2p.fuzz
172
173 depend: $(mallocsrc) ../makedepend
174         sh ../makedepend MAKE=$(MAKE)
175
176 clist:
177         echo $(c) | tr ' ' $(TRNL) >.clist
178
179 hlist:
180         echo $(h) | tr ' ' $(TRNL) >.hlist
181
182 shlist:
183         echo $(sh) | tr ' ' $(TRNL) >.shlist
184
185 $(plextract):
186         $(RUN) $(PERL) -I../lib $@.PL
187
188 find2perl: find2perl.PL ../config.sh
189
190 s2p: s2p.PL ../config.sh
191
192 malloc.c: ../malloc.c
193         rm -f malloc.c
194         sed <../malloc.c >malloc.c \
195             -e 's/"EXTERN.h"/"..\/EXTERN.h"/' \
196             -e 's/"perl.h"/"..\/perl.h"/' \
197             -e 's/my_exit/exit/' \
198             -e 's/MUTEX_[A-Z_]*(&PL_malloc_mutex);//'
199
200 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
201 $(obj):
202         @ echo "You haven't done a "'"make depend" yet!'; exit 1
203 makedepend: depend
204 !NO!SUBS!
205 $eunicefix Makefile
206 case `pwd` in
207 *SH)
208     $rm -f ../Makefile
209     $ln Makefile ../Makefile
210     ;;
211 esac
212 rm -f $firstmakefile