mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-17 16:10:46 +01:00
cb3131379f
floppy formatting is in /sys/i386/isa/fdreg.h, it should be in /usr/include somewhere ??
10 lines
270 B
Makefile
10 lines
270 B
Makefile
#
|
|
PROG = fdformat
|
|
|
|
# the -I's seem to be confusing, but necessery this way
|
|
# (so the right <unistd.h> will be found in /usr/include, and the
|
|
# "../i386/isa/ic/nec765.h" included from fdreg.h is accessible, too)
|
|
CFLAGS+= -Wall -I${DESTDIR}/sys
|
|
|
|
.include <bsd.prog.mk>
|