mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
23 lines
352 B
Makefile
23 lines
352 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= btxldr.out
|
|
INTERNALPROG=
|
|
NOMAN=
|
|
SRCS= btxldr.S
|
|
CLEANFILES= btxldr
|
|
|
|
CFLAGS+=-DPC98
|
|
CFLAGS+=-DLOADER_ADDRESS=${LOADER_ADDRESS}
|
|
|
|
.if defined(BTXLDR_VERBOSE)
|
|
CFLAGS+=-DBTXLDR_VERBOSE
|
|
.endif
|
|
|
|
all: btxldr
|
|
|
|
LDFLAGS=-N -e start -Ttext ${LOADER_ADDRESS}
|
|
|
|
btxldr: btxldr.out
|
|
objcopy -S -O binary btxldr.out ${.TARGET}
|
|
|
|
.include <bsd.prog.mk>
|