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