xref: /openbsd/gnu/usr.bin/cc/Makefile (revision d415bd75)
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.3 2017/07/24 19:23:57 robert 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+= cc1obj
17SUBDIR+= gcov
18SUBDIR+= libgcc
19SUBDIR+= libgcov
20SUBDIR+= collect2
21
22.include <bsd.subdir.mk>
23