minix/usr.sbin/mkfs.mfs/Makefile

16 lines
282 B
Makefile
Raw Normal View History

PROG= mkfs.mfs
SRCS= mkfs.c
BINDIR= /sbin
MAN=
2012-08-24 17:54:07 +02:00
CPPFLAGS+= -D_MINIX
# LSC Adding this to activate the getline renaming macro
CPPFLAGS+= -D__NBSD_LIBC
.if ${HOST_OSTYPE:C/\-.*//:U} == "Minix" || !defined(HOSTPROGNAME)
LDADD+= -lminlib -lcompat_minix
.endif
2012-06-12 20:45:29 +02:00
.include <bsd.prog.mk>