mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-30 10:52:50 +00:00
023fc80ee3
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
Similar commit in main:
(cherry picked from commit d0b2dbfa0e
)
19 lines
350 B
Makefile
19 lines
350 B
Makefile
# @(#)Makefile 8.2 (Berkeley) 3/17/94
|
|
|
|
.PATH: ${SRCTOP}/sys/geom
|
|
|
|
CONFS= disktab
|
|
PACKAGE=runtime
|
|
PROG= bsdlabel
|
|
SRCS= bsdlabel.c geom_bsd_enc.c
|
|
MAN+= bsdlabel.8
|
|
|
|
.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
|
|
LINKS= ${BINDIR}/bsdlabel ${BINDIR}/disklabel
|
|
MLINKS= bsdlabel.8 disklabel.8
|
|
.endif
|
|
|
|
LIBADD= geom
|
|
|
|
.include <bsd.prog.mk>
|