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

Annotation of src/usr.bin/gcore/Makefile, Revision 1.1

1.1     ! deraadt     1: #      @(#)Makefile    8.1 (Berkeley) 6/6/93
        !             2: #       $NetBSD: Makefile,v 1.3 1995/09/05 09:11:55 phil Exp $
        !             3:
        !             4: PROG=  gcore
        !             5: SRCS=  gcore.c
        !             6:
        !             7: .if ${MACHINE} == pc532
        !             8: SRCS += md-nop.c
        !             9: .else
        !            10: SRCS += md-${MACHINE}.c
        !            11: .endif
        !            12:
        !            13: LDADD= -lkvm
        !            14:
        !            15: .include <bsd.prog.mk>