opnsense-src/sys/boot/pc98/cdboot/Makefile

20 lines
341 B
Makefile
Raw Normal View History

2006-05-14 03:26:02 -04:00
# $FreeBSD$
PROG= cdboot
STRIP=
BINMODE=${NOBINMODE}
MAN=
SRCS= ${PROG}.S
CFLAGS+=-I${.CURDIR}/../../i386/common
2006-05-14 03:26:02 -04:00
ORG= 0x0000
LDFLAGS=-e start -Ttext ${ORG} -Wl,-N,-S,--oformat,binary
2006-05-14 03:26:02 -04:00
.include <bsd.prog.mk>
# XXX: clang integrated-as doesn't grok .codeNN directives yet
CFLAGS.cdboot.S= ${CLANG_NO_IAS}
CFLAGS+= ${CFLAGS.${.IMPSRC:T}}