perl 5.003_01: [changes beteween cumulative patches and tarball release]
[p5sagit/p5-mst-13.2.git] / x2p / Makefile.SH
1 case $CONFIG 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 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
18 esac
19
20 : ${bin_sh=/bin/sh}
21
22 echo "Extracting x2p/Makefile (with variable substitutions)"
23 rm -f Makefile
24 cat >Makefile <<!GROK!THIS!
25 # $RCSfile: Makefile.SH,v $$Revision: 4.1 $$Date: 1996/07/05 23:49:56 $
26 #
27 # $Log: Makefile.SH,v $
28 # Revision 1.2  1996/07/05 23:49:56  gerti
29 # OPENSTEP 4.0 patches
30 #
31
32 CC = $cc
33 BYACC = $byacc
34 LDFLAGS = $ldflags
35 SMALL = $small
36 LARGE = $large $split
37 MAB = $mab
38 mallocsrc = $mallocsrc
39 mallocobj = $mallocobj
40 shellflags = $shellflags
41
42 libs = $libs
43
44 # These variables will be used in a future version to make
45 # the make file more portable to non-unix systems.
46 AR = $ar
47 EXE_EXT = $exe_ext
48 LIB_EXT = $lib_ext
49 OBJ_EXT = $obj_ext
50 PATH_SEP = $path_sep
51
52 FIRSTMAKEFILE = $firstmakefile
53
54 .SUFFIXES: .c \$(OBJ_EXT)
55
56 # grrr
57 SHELL = $bin_sh
58
59 !GROK!THIS!
60
61 cat >>Makefile <<'!NO!SUBS!'
62
63 CCCMD = `sh $(shellflags) cflags $@`
64
65 public = a2p s2p find2perl
66
67 private = 
68
69 manpages = a2p.man s2p.man
70
71 util =
72
73 sh = Makefile.SH cflags.SH
74 shextract = Makefile cflags
75
76 pl = find2perl.PL s2p.PL
77 plextract = find2perl s2p
78
79 addedbyconf = $(shextract) $(plextract)
80
81 h = EXTERN.h INTERN.h ../config.h handy.h hash.h a2p.h str.h util.h
82
83 c = hash.c $(mallocsrc) str.c util.c walk.c
84
85 obj = hash$(OBJ_EXT) $(mallocobj) str$(OBJ_EXT) util$(OBJ_EXT) walk$(OBJ_EXT)
86
87 lintflags = -phbvxac
88
89 .c$(OBJ_EXT):
90         $(CCCMD) $(MAB) $*.c
91
92 all: $(public) $(private) $(util)
93         touch all
94
95 a2p: $(obj) a2p$(OBJ_EXT)
96         $(CC) $(MAB) $(LDFLAGS) $(obj) a2p$(OBJ_EXT) $(libs) -o a2p
97
98 # I now supply a2p.c with the kits, so the following section is
99 # used only if you force byacc to run by saying
100 # make  run_byacc
101
102 run_byacc:      FORCE
103         @ echo Expect many shift/reduce and reduce/reduce conflicts
104         $(BYACC) a2p.y
105         mv y.tab.c a2p.c
106
107 # We don't want to regenerate a2p.c, but it might appear out-of-date
108 # after a patch is applied or a new distribution is made.
109 a2p.c: a2p.y
110         -@touch a2p.c
111
112 a2p$(OBJ_EXT): a2p.c a2py.c a2p.h EXTERN.h util.h INTERN.h handy.h ../config.h str.h hash.h
113         $(CCCMD) $(LARGE) $(MAB) a2p.c
114
115 clean:
116         rm -f a2p *$(OBJ_EXT)
117
118 realclean: clean
119         rm -f *.orig core $(addedbyconf) all malloc.c
120         rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old
121
122 # The following lint has practically everything turned on.  Unfortunately,
123 # you have to wade through a lot of mumbo jumbo that can't be suppressed.
124 # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
125 # for that spot.
126
127 lint:
128         lint $(lintflags) $(defs) $(c) > a2p.fuzz
129
130 depend: $(mallocsrc) ../makedepend
131         sh ../makedepend
132
133 clist:
134         echo $(c) | tr ' ' '\012' >.clist
135
136 hlist:
137         echo $(h) | tr ' ' '\012' >.hlist
138
139 shlist:
140         echo $(sh) | tr ' ' '\012' >.shlist
141
142 # These should be automatically generated
143
144 $(plextract):
145         ../miniperl -I../lib $@.PL
146
147 malloc.c: ../malloc.c
148         rm -f malloc.c
149         sed <../malloc.c >malloc.c \
150             -e 's/"perl.h"/"..\/perl.h"/' \
151             -e 's/my_exit/exit/'
152
153 # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
154 $(obj):
155         @ echo "You haven't done a "'"make depend" yet!'; exit 1
156 makedepend: depend
157 !NO!SUBS!
158 $eunicefix Makefile
159 case `pwd` in
160 *SH)
161     $rm -f ../Makefile
162     $ln Makefile ../Makefile
163     ;;
164 esac
165 rm -f $firstmakefile