blob: 008284a545a77deb4ad0a737ff84fdaa53239981 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $FreeBSD: src/gnu/usr.bin/cc/Makefile,v 1.41.8.1 2009/04/15 03:14:26 kensmith Exp $
# $OpenBSD: Makefile,v 1.4 2024/03/29 06:52:50 miod Exp $
.include <bsd.own.mk>
# The order of some of these are rather important. Some depend on previous
# subdirs.
SUBDIR= cc_tools libcpp libdecnumber cc_int cc cc1 include doc
.if ${COMPILER_VERSION:L} == "gcc4"
SUBDIR+= cpp
.endif
SUBDIR+= cc1plus c++ c++filt
SUBDIR+= gcov
SUBDIR+= libgcc
SUBDIR+= libgcov
SUBDIR+= collect2
.include <bsd.subdir.mk>
|