sem_init.3: Mark up SEM_VALUE_MAX.
[dragonfly.git] / gnu / usr.bin / cc50 / Makefile
blob2b324fb131647baa20d88ca0473549786ae4d454
1 # if wrapper mode
2 .if (defined(NO_CROSSTOOLS) && defined(BOOTSTRAPPING)) || \
3 (!defined(BOOTSTRAPPING) && defined(NO_TOOLCHAIN))
4 .include "Makefile.zhack"
5 .else
7 # normal mode
8 # This build order provides more parallelism that gcc47, and is almost as
9 # efficient as possible. Most of the support libraries could be built
10 # without cc_tools and the backend could be built at the same time as the
11 # drivers rather than afterwards, but this setup is reasonably fine grained.
13 SUBDIR_ORDERED= cc_prep cc_tools support-libs drivers libbackend backends
15 # The SUBDIR_ORDERED definition is currently equivalent to SUBDIR_ORDERED=
16 # but it wasn't always -- there used to be "doc" directory which could be
17 # built at any time. Just leave the redundant definition for now, maybe
18 # we'll need it again in the future.
20 SUBDIR= cc_prep
21 SUBDIR+= cc_tools
22 SUBDIR+= support-libs
23 SUBDIR+= drivers
24 SUBDIR+= libbackend
25 SUBDIR+= backends
27 .include <bsd.subdir.mk>
28 .endif