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

Annotation of src/usr.bin/systat/Makefile, Revision 1.10

1.10    ! art         1: #      $OpenBSD: Makefile,v 1.9 1999/10/26 15:13:53 art Exp $
1.1       deraadt     2:
                      3: PROG=  systat
1.2       mickey      4:
1.3       deraadt     5: .PATH: ${.CURDIR}/../../usr.bin/vmstat
                      6:
                      7: CFLAGS+=-I${.CURDIR}/../../usr.bin/vmstat
                      8: SRCS=  cmds.c cmdtab.c disks.c dkstats.c fetch.c iostat.c keyboard.c \
                      9:        main.c mbufs.c netcmds.c netstat.c pigs.c swap.c vmstat.c
1.8       millert    10: DPADD= ${LIBCURSES} ${LIBM} ${LIBKVM}
                     11: LDADD= -lcurses -lm -lkvm
1.1       deraadt    12: BINGRP=        kmem
1.7       deraadt    13: BINMODE=2555
1.1       deraadt    14:
                     15: .include <bsd.prog.mk>
1.9       art        16:
                     17: .if (${UVM} == "yes")
                     18: CFLAGS+=-DUVM
1.10    ! art        19: .endif