e2366ecc70
now be specified on the command line. Accept a '-s' option which controls whether a switch-statement is to be used instead of a series of if-statements. Replace cpp with gcc -E. Discussed with: bde
14 lines
289 B
Makefile
14 lines
289 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
PROG= kdump
|
|
CFLAGS+=-I${.CURDIR}/../ktrace -I${.CURDIR}/../..
|
|
SRCS= kdump.c ioctl.c subr.c
|
|
.PATH: ${.CURDIR}/../ktrace
|
|
CLEANFILES+=ioctl.c
|
|
|
|
ioctl.c: mkioctls
|
|
sh ${.CURDIR}/mkioctls ${DESTDIR}/usr/include > ioctl.c
|
|
|
|
.include <bsd.prog.mk>
|