8299b37f85
MK_CTF, MK_SSP, MK_PROFILE, NO_PIC, and INTERNALLIB are always the same, so set them in defs.mk. MAN= is common, so set it here too. This removes a lot of boring repetition from the Makefiles that added almost no value.
14 lines
170 B
Makefile
14 lines
170 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= pmbr
|
|
STRIP=
|
|
BINMODE=${NOBINMODE}
|
|
SRCS= ${PROG}.s
|
|
|
|
ORG= 0x600
|
|
|
|
AFLAGS+=--defsym FLAGS=${BOOT_MBR_FLAGS}
|
|
LDFLAGS+=${LDFLAGS_BIN}
|
|
|
|
.include <bsd.prog.mk>
|