mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-03 14:48:57 +00:00
023fc80ee3
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
Similar commit in main:
(cherry picked from commit d0b2dbfa0e
)
16 lines
253 B
Makefile
16 lines
253 B
Makefile
|
|
PROG= mbr
|
|
STRIP=
|
|
BINMODE=${NOBINMODE}
|
|
SRCS= ${PROG}.S
|
|
|
|
# MBR flags: 0x80 -- try packet interface (also known as EDD or LBA)
|
|
BOOT_MBR_FLAGS?= 0x80
|
|
|
|
ORG= 0x600
|
|
|
|
ACFLAGS+=-Wa,-defsym,FLAGS=${BOOT_MBR_FLAGS}
|
|
LDFLAGS+=${LDFLAGS_BIN}
|
|
|
|
.include <bsd.prog.mk>
|