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