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