[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / kdump

Annotation of src/usr.bin/kdump/Makefile, Revision 1.1.1.1

1.1       deraadt     1: #      from: @(#)Makefile      8.1 (Berkeley) 6/6/93
                      2: #      $Id: Makefile,v 1.4 1994/12/06 14:54:50 deraadt Exp $
                      3:
                      4: LDSTATIC=-static
                      5: PROG=  kdump
                      6: CFLAGS+=-I${.CURDIR}/../ktrace
                      7: SRCS=  kdump.c ioctl.c subr.c
                      8: .PATH: ${.CURDIR}/../ktrace
                      9: CLEANFILES+=ioctl.c
                     10:
                     11: ioctl.c: mkioctls
                     12:        /bin/sh ${.CURDIR}/mkioctls ${DESTDIR}/usr/include/sys/ioctl.h \
                     13:            ${DESTDIR}/usr/include/sys/ioctl_compat.h > ioctl.c
                     14:
                     15: .include <bsd.prog.mk>