xref: /dragonfly/gnu/usr.bin/cc80/Makefile (revision 7bcb6caf)
1# This build order provides more parallelism that gcc47, and is almost as
2# efficient as possible.  Most of the support libraries could be built
3# without cc_tools and the backend could be built at the same time as the
4# drivers rather than afterwards, but this setup is reasonably fine grained.
5
6SUBDIR_ORDERED=	cc_prep cc_tools support-libs drivers libbackend backends
7
8# The SUBDIR_ORDERED definition is currently equivalent to SUBDIR_ORDERED=
9# but it wasn't always -- there used to be "doc" directory which could be
10# built at any time.  Just leave the redundant definition for now, maybe
11# we'll need it again in the future.
12
13SUBDIR=		cc_prep
14SUBDIR+=	cc_tools
15SUBDIR+=	support-libs
16SUBDIR+=	drivers
17SUBDIR+=	libbackend
18SUBDIR+=	backends
19
20.include <bsd.subdir.mk>
21