Makefile revision 93738
1# $FreeBSD: head/gnu/usr.bin/cc/cc_tools/Makefile 93738 2002-04-04 00:11:00Z obrien $
2
3#
4# This could probably be merged with ../cc_int/Makefile, but bsd.lib.mk
5# is such a !@#!*#% nightmare because of how it reprograms the dependencies,
6# suffix rules, SRCS, etc.  It's easiest to cheat by using bsd.prog.mk and
7# SRCS to get dependencies.
8#
9
10# ../Makefile.inc will put an absolute path to our objdir in CFLAGS.
11# Prevent mkdep from using it, so that we don't have to give rules for
12# aliases of generated headers.
13
14CFLAGS+=	-I.
15WARNS=		0
16
17.include "../Makefile.inc"
18
19.PATH: ${GCCDIR} ${GCCDIR}/cp
20
21#-----------------------------------------------------------------------
22# insn-* gunk
23
24.for F in attr codes config flags
25insn-$F.h: gen$F ${MD_FILE}
26	./gen$F ${MD_FILE} > insn-$F.h
27GENSRCS+=	insn-$F.h
28.endfor
29
30GENSRCS+=	gen-time-stamp
31gen-time-stamp: genattrtab genemit genextract genopinit genoutput genpeep genrecog
32	touch ${.TARGET}
33
34.for F in attr codes config emit extract flags opinit output peep recog
35build-tools: gen$F
36
37gen$F: gen$F.o rtl.o obstack.o print-rtl.o bitmap.o
38	${CC} -static ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${.ALLSRC}
39
40GENSRCS+=	gen$F.c
41CLEANFILES+=	gen$F
42.endfor
43
44.for F in attrtab
45build-tools: gen$F
46
47gen$F: gen$F.o rtl.o rtlanal.o print-rtl.o obstack.o bitmap.o
48	${CC} -static ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${.ALLSRC}
49
50GENSRCS+=	gen$F.c
51CLEANFILES+=	gen$F
52.endfor
53
54SRCS+=		bitmap.c obstack.c print-rtl.c rtl.c rtlanal.c
55
56.for F in check genrtl
57build-tools: gen$F
58
59gen$F: gen$F.o
60	${CC} -static ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${.ALLSRC}
61
62GENSRCS+=	gen$F.c
63CLEANFILES+=	gen$F
64.endfor
65
66.ORDER: genrtl.c genrtl.h
67genrtl.c genrtl.h: gengenrtl
68	./gengenrtl genrtl.h genrtl.c
69
70GENSRCS+=	genrtl.c genrtl.h
71
72#-----------------------------------------------------------------------
73# C hash codes
74c-gperf.h: c-parse.gperf
75	gperf -p -j1 -i 1 -g -o -t -G -N is_reserved_word -k1,3,$$ \
76	    ${GCCDIR}/c-parse.gperf > ${.TARGET}
77GENSRCS+=	c-gperf.h
78
79#-----------------------------------------------------------------------
80# C++ hash codes
81gxx-hash.h: gxx.gperf
82	gperf -p -j1 -g -o -t -N is_reserved_word '-k1,4,7,$$' \
83	    ${GCCDIR}/cp/gxx.gperf >gxx-hash.h
84GENSRCS+=	gxx-hash.h
85
86# make a link the the Cygnus used name for now -- hopes are they will change it
87hash.h: gxx-hash.h
88	ln -sf ${.ALLSRC} ${.TARGET}
89GENSRCS+=	hash.h
90
91#-----------------------------------------------------------------------
92# Common parser stuff.
93
94tree-check.h: gencheck
95	./gencheck > ${.TARGET}
96GENSRCS+=	tree-check.h
97
98#-----------------------------------------------------------------------
99# the host/target compiler config.
100
101COMMONHDRS=	config.h hconfig.h multilib.h options.h specs.h tconfig.h tm.h
102GENSRCS+=	${COMMONHDRS} gencheck.h
103
104config.h hconfig.h:
105	echo '#include "auto-host.h"'				> ${.TARGET}
106	echo '#include "gansidecl.h"'				>> ${.TARGET}
107	echo '#include "${TARGET_ARCH}/xm-${TARGET_ARCH}.h"'	>> ${.TARGET}
108	echo '#include "hwint.h"'				>> ${.TARGET}
109
110gencheck.h:
111	echo '#include "cp/cp-tree.def"'		> ${.TARGET}
112	echo '#include "objc/objc-tree.def"'		>> ${.TARGET}
113
114multilib.h:
115	echo 'static char *multilib_raw[] = { \
116	    "aout maout;", "elf !maout;", NULL };'	> ${.TARGET}
117	echo 'static char *multilib_matches_raw[] = { \
118	    "maout maout;", "melf melf;", NULL };'	>> ${.TARGET}
119	echo 'static char *multilib_extra = "";'	>> ${.TARGET}
120
121options.h:
122	echo '#include "cp/lang-options.h"'		> ${.TARGET}
123	echo '#include "f/lang-options.h"'		>> ${.TARGET}
124
125specs.h:
126	echo '#include "cp/lang-specs.h"'		> ${.TARGET}
127	echo '#include "f/lang-specs.h"'		>> ${.TARGET}
128	echo '#include "objc/lang-specs.h"'		>> ${.TARGET}
129
130tconfig.h:
131	echo '#include "gansidecl.h"'				> ${.TARGET}
132	echo '#include "${TARGET_ARCH}/xm-${TARGET_ARCH}.h"'	>> ${.TARGET}
133
134# KEEP THIS IN SYNC with src/gcc/lib/libgcc/Makefile !!
135tm.h:
136	echo '#include "${TARGET_ARCH}/${TARGET_ARCH}.h"'	> ${.TARGET}
137.if ${TARGET_ARCH} == "i386"
138	echo '#include "${TARGET_ARCH}/att.h"'			>> ${.TARGET}
139.endif
140	echo '#include <freebsd.h>'				>> ${.TARGET}
141	echo '#include "dbxelf.h"'				>> ${.TARGET}
142.if exists(${GCCDIR}/config/${TARGET_ARCH}/elf.h)
143	echo '#include "${TARGET_ARCH}/elf.h"'			>> ${.TARGET}
144.endif
145	echo '#include "${TARGET_ARCH}/freebsd.h"'		>> ${.TARGET}
146.if ${TARGET_ARCH} == "i386"
147	echo '#include "${TARGET_ARCH}/perform.h"'		>> ${.TARGET}
148.endif
149	echo '#include <freebsd-native.h>'			>> ${.TARGET}
150
151#-----------------------------------------------------------------------
152# General things.
153
154SRCS+=		${GENSRCS}
155CLEANFILES+=	${GENSRCS}
156
157all: ${SRCS}
158
159build-tools: depend
160
161.include <bsd.prog.mk>
162
163#-----------------------------------------------------------------------
164# Fixups.
165
166# Set OBJS the same as bsd.prog.mk would do if we defined PROG.  We can't
167# define PROG because we have multiple programs.
168#
169OBJS+=		${SRCS:N*.h:R:S/$/.o/g}
170
171.if !exists(${DEPENDFILE})
172# Fudge pre-dependfile dependencies of objects in much the same way as
173# bsd.prog.mk would do if we defined PROG.  There are complications to
174# avoid circular dependencies.  First, only make most objects depend on
175# all headers.  Filter out the objects that would cause problems (i.e.,
176# objects that will be used to create programs that will generate headers).
177#
178${OBJS:Nbitmap.o:Ngenattr.o:Ngencheck.o:Ngencodes.o:Ngenconfig.o:Ngenflags.o:Ngengenrtl.o:Nobstack.o:Nprint-rtl.o:Nrtl.o}: ${SRCS:M*.h}
179
180# Next, make each of the problematic objects depend on only most headers.
181# Filter out the headers that would cause problems (and a few more when it
182# is inconvenient to filter precisely).
183#
184bitmap.o genattr.o gencodes.o genconfig.o genflags.o obstack.o print-rtl.o \
185    rtl.o: ${SRCS:M*.h:Ninsn-*.h}
186gencheck.o: gencheck.h ${SRCS:M*.h:Ngenrtl.h:Ntree-check.h:Ninsn-*.h}
187gengenrtl.o: ${SRCS:M*.h:Ngenrtl.h:Ninsn-*.h}
188.endif
189