Commit | Line | Data |
---|---|---|
d136e0b2 | 1 | case $PERL_CONFIG_SH in |
8d063cd8 | 2 | '') |
a0d0e21e | 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 | ;; | |
8d063cd8 | 13 | esac |
a0d0e21e | 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 | |
ff3fa5b4 | 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;; | |
a0d0e21e | 25 | esac |
26 | ||
8d063cd8 | 27 | echo "Extracting x2p/Makefile (with variable substitutions)" |
bf10efe7 | 28 | rm -f Makefile |
8d063cd8 | 29 | cat >Makefile <<!GROK!THIS! |
1aef788c | 30 | # $RCSfile: Makefile.SH,v $$Revision: 4.1 $$Date: 92/08/07 18:29:07 $ |
8d063cd8 | 31 | # |
32 | # $Log: Makefile.SH,v $ | |
8d063cd8 | 33 | |
34 | CC = $cc | |
9c8d0b29 | 35 | BYACC = $byacc |
8d063cd8 | 36 | LDFLAGS = $ldflags |
5869b1f1 | 37 | # XXX Perl malloc temporarily unusable (declaration collisions with stdlib.h) |
30e2e425 | 38 | #mallocsrc = $mallocsrc |
39 | #mallocobj = $mallocobj | |
bf10efe7 | 40 | shellflags = $shellflags |
8d063cd8 | 41 | |
ae7ff215 | 42 | libs = $perllibs |
cc72480d | 43 | |
1aef788c | 44 | $make_set_make |
45 | # grrr | |
46 | SHELL = $sh | |
47 | ||
dfe9444c | 48 | # These variables may need to be manually set for non-Unix systems. |
cc72480d | 49 | AR = $ar |
b0d7393a | 50 | EXE_EXT = $_exe |
dfe9444c | 51 | LIB_EXT = $_a |
52 | OBJ_EXT = $_o | |
53 | PATH_SEP = $p_ | |
cc72480d | 54 | |
55 | FIRSTMAKEFILE = $firstmakefile | |
56 | ||
28e8609d | 57 | # how to tr(anslate) newlines |
58 | ||
59 | TRNL = '$trnl' | |
60 | ||
40fee945 | 61 | OPTIMIZE = $optimize |
62 | ||
cc72480d | 63 | .SUFFIXES: .c \$(OBJ_EXT) |
64 | ||
6d4b7d88 | 65 | RUN = $run |
66 | ||
8d063cd8 | 67 | !GROK!THIS! |
68 | ||
69 | cat >>Makefile <<'!NO!SUBS!' | |
70 | ||
52cebf5e | 71 | REALPERL = ../perl |
40fee945 | 72 | CCCMD = `sh $(shellflags) cflags "optimize='$(OPTIMIZE)'" $@` |
d48672a2 | 73 | |
443a5b98 | 74 | public = a2p$(EXE_EXT) s2p find2perl |
8d063cd8 | 75 | |
76 | private = | |
77 | ||
78 | manpages = a2p.man s2p.man | |
79 | ||
80 | util = | |
81 | ||
4633a7c4 | 82 | sh = Makefile.SH cflags.SH |
83 | shextract = Makefile cflags | |
8d063cd8 | 84 | |
4633a7c4 | 85 | pl = find2perl.PL s2p.PL |
86 | plextract = find2perl s2p | |
52cebf5e | 87 | plexe = find2perl.exe s2p.exe |
88 | plc = find2perl.c s2p.c | |
1cfa4ec7 | 89 | plm = a2p.loadmap |
4633a7c4 | 90 | |
91 | addedbyconf = $(shextract) $(plextract) | |
16d20bd9 | 92 | |
3b5ca523 | 93 | h = EXTERN.h INTERN.h ../config.h ../handy.h hash.h a2p.h str.h util.h |
8d063cd8 | 94 | |
3b5ca523 | 95 | c = hash.c $(mallocsrc) str.c util.c walk.c |
8d063cd8 | 96 | |
cc72480d | 97 | obj = hash$(OBJ_EXT) $(mallocobj) str$(OBJ_EXT) util$(OBJ_EXT) walk$(OBJ_EXT) |
8d063cd8 | 98 | |
99 | lintflags = -phbvxac | |
100 | ||
1aef788c | 101 | |
cc72480d | 102 | .c$(OBJ_EXT): |
1aef788c | 103 | $(CCCMD) -DPERL_FOR_X2P $*.c |
8d063cd8 | 104 | |
105 | all: $(public) $(private) $(util) | |
30b346b1 | 106 | @echo " " |
8d063cd8 | 107 | |
443a5b98 | 108 | a2p$(EXE_EXT): $(obj) a2p$(OBJ_EXT) |
87563a30 | 109 | $(CC) -o a2p $(LDFLAGS) $(obj) a2p$(OBJ_EXT) $(libs) |
8d063cd8 | 110 | |
9c8d0b29 | 111 | # I now supply a2p.c with the kits, so the following section is |
56febc5e | 112 | # used only if you force byacc to run by saying |
4cec2b33 | 113 | # make run_byacc |
114 | # byacc 1.8.2 or 1.9 are recommended. | |
56febc5e | 115 | |
4cec2b33 | 116 | run_byacc: FORCE |
56febc5e | 117 | @ echo Expect many shift/reduce and reduce/reduce conflicts |
118 | $(BYACC) a2p.y | |
28e8609d | 119 | rm -f a2p.c |
08e61bcc | 120 | sed -e 's/(yyn = yydefred\[yystate\])/((yyn = yydefred[yystate]))/' \ |
caf640e2 | 121 | -e 's/(yys = getenv("YYDEBUG"))/((yys = getenv("YYDEBUG")))/' \ |
08e61bcc | 122 | -e 's/^yyerrlab://' \ |
123 | -e 's/^ goto yyerrlab;//' \ | |
124 | -e 's/^yynewerror://' \ | |
125 | -e 's/^ goto yynewerror;//' \ | |
126 | -e 's|^static char yysccsid\(.*\)|/* static char yysccsid\1 */|' \ | |
aab39148 | 127 | -e 's/^\(char \*yyname\[\]\)/const \1/' \ |
128 | -e 's/^\(char \*yyrule\[\]\)/const \1/' \ | |
129 | -e 's/^\( register\) \(char \*yys;\)/\1 const \2/' \ | |
08e61bcc | 130 | < y.tab.c > a2p.c |
56febc5e | 131 | |
2efaeb47 | 132 | FORCE: |
133 | ||
56febc5e | 134 | # We don't want to regenerate a2p.c, but it might appear out-of-date |
135 | # after a patch is applied or a new distribution is made. | |
136 | a2p.c: a2p.y | |
30b346b1 | 137 | -@sh -c true |
8d063cd8 | 138 | |
55497cff | 139 | a2p$(OBJ_EXT): a2p.c a2py.c a2p.h EXTERN.h util.h INTERN.h \ |
140 | ../handy.h ../config.h str.h hash.h | |
5869b1f1 | 141 | $(CCCMD) a2p.c |
8d063cd8 | 142 | |
8d063cd8 | 143 | clean: |
6189dba1 | 144 | rm -f a2p$(EXE_EXT) psed *$(OBJ_EXT) $(plexe) $(plc) $(plm) |
8d063cd8 | 145 | |
b6ccd89c | 146 | realclean: clean |
882d9136 | 147 | -rmdir .depending |
56acea6f | 148 | rm -f core $(addedbyconf) all malloc.c |
0eb4e931 | 149 | rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old makefile.old |
8d063cd8 | 150 | |
2edbd6da | 151 | veryclean: realclean |
152 | rm -f *~ *.orig | |
153 | ||
8d063cd8 | 154 | # The following lint has practically everything turned on. Unfortunately, |
155 | # you have to wade through a lot of mumbo jumbo that can't be suppressed. | |
156 | # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message | |
157 | # for that spot. | |
158 | ||
159 | lint: | |
160 | lint $(lintflags) $(defs) $(c) > a2p.fuzz | |
161 | ||
f1ca563b | 162 | depend: $(mallocsrc) ../makedepend |
3b5ca523 | 163 | sh ../makedepend MAKE=$(MAKE) |
8d063cd8 | 164 | |
165 | clist: | |
28e8609d | 166 | echo $(c) | tr ' ' $(TRNL) >.clist |
8d063cd8 | 167 | |
168 | hlist: | |
28e8609d | 169 | echo $(h) | tr ' ' $(TRNL) >.hlist |
8d063cd8 | 170 | |
171 | shlist: | |
28e8609d | 172 | echo $(sh) | tr ' ' $(TRNL) >.shlist |
8d063cd8 | 173 | |
4633a7c4 | 174 | # These should be automatically generated |
175 | ||
176 | $(plextract): | |
6d4b7d88 | 177 | $(RUN) ../miniperl -I../lib $@.PL |
4633a7c4 | 178 | |
1b641bfc | 179 | find2perl: find2perl.PL |
180 | ||
181 | s2p: s2p.PL | |
182 | ||
f1ca563b | 183 | malloc.c: ../malloc.c |
748a9306 | 184 | rm -f malloc.c |
79072805 | 185 | sed <../malloc.c >malloc.c \ |
14bd2ed1 | 186 | -e 's/"EXTERN.h"/"..\/EXTERN.h"/' \ |
79072805 | 187 | -e 's/"perl.h"/"..\/perl.h"/' \ |
5538b580 | 188 | -e 's/my_exit/exit/' \ |
8611d51e | 189 | -e 's/MUTEX_[A-Z_]*(&PL_malloc_mutex);//' |
f1ca563b | 190 | |
8d063cd8 | 191 | # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE |
192 | $(obj): | |
193 | @ echo "You haven't done a "'"make depend" yet!'; exit 1 | |
a0d0e21e | 194 | makedepend: depend |
8d063cd8 | 195 | !NO!SUBS! |
196 | $eunicefix Makefile | |
197 | case `pwd` in | |
198 | *SH) | |
199 | $rm -f ../Makefile | |
cc72480d | 200 | $ln Makefile ../Makefile |
8d063cd8 | 201 | ;; |
202 | esac | |
cc72480d | 203 | rm -f $firstmakefile |