1 1.14 jwise # $NetBSD: Makefile,v 1.14 1999/02/21 21:48:07 jwise Exp $ 2 1.1 jtc # @(#)Makefile 8.1 (Berkeley) 6/6/93 3 1.1 jtc 4 1.1 jtc PROG= systat 5 1.4 jonathan 6 1.7 gwr .PATH: ${.CURDIR}/../../usr.bin/vmstat 7 1.5 thorpej 8 1.10 lukem CPPFLAGS+=-I${.CURDIR}/../../usr.bin/vmstat 9 1.14 jwise CWARNFLAGS+= -Wno-format-y2k 10 1.5 thorpej SRCS= cmds.c cmdtab.c disks.c dkstats.c fetch.c iostat.c keyboard.c \ 11 1.14 jwise main.c mbufs.c netcmds.c netstat.c pigs.c ps.c swap.c vmstat.c 12 1.13 jtc DPADD= ${LIBCURSES} ${LIBM} ${LIBKVM} 13 1.13 jtc LDADD= -lcurses -lm -lkvm 14 1.1 jtc BINGRP= kmem 15 1.1 jtc BINMODE=2555 16 1.1 jtc 17 1.1 jtc .include <bsd.prog.mk> 18 1.11 mrg 19 1.11 mrg # XXX 20 1.11 mrg .if defined(UVM) 21 1.11 mrg CPPFLAGS+= -DUVM 22 1.12 perry .endif 23 1.12 perry .if defined(PMAP_NEW) 24 1.12 perry CPPFLAGS+= -DPMAP_NEW 25 1.11 mrg .endif 26