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