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