xref: /dragonfly/gnu/usr.bin/Makefile.cco (revision 56380a7f)
1# DragonFly maintains two sets of compilers.
2# In order to keep man page generation simple when the primary compiler
3# changes, this makefile will direct the makefile that included it to
4# hardlink a generic man pages for the selected primary compiler.
5# The same approach is used for the two sets of binutils
6
7CC_PRIMARY=	gcc80
8CC_BACKUP=	gcc47
9
10.if defined(COMPVERSION)
11.if (${COMPVERSION} == ${CC_PRIMARY})
12IS_PRIMARY=	1
13.endif
14.endif
15