2011-07-09 15:04:42 +02:00
|
|
|
# MINIX-specific servers/drivers options
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
|
|
|
|
.if ${COMPILER_TYPE} == "gnu"
|
|
|
|
|
|
|
|
.if ${CC} == "gcc"
|
2011-07-09 15:17:12 +02:00
|
|
|
LDADD+= -nodefaultlibs -lgcc -lsys -lgcc -lminc
|
2011-07-09 15:04:42 +02:00
|
|
|
.elif ${CC} == "clang"
|
2011-07-09 15:17:12 +02:00
|
|
|
LDADD+= -nodefaultlibs -L/usr/pkg/lib -lCompilerRT-Generic -lsys -lCompilerRT-Generic -lminc
|
2011-07-09 15:04:42 +02:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|