diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 1999-06-23 12:56:19 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 1999-06-23 12:56:19 +0000 |
commit | 069c4eb8e06bde89bf36d7ea3d52c9ff4cb0e5e0 (patch) | |
tree | 3374ff0a325e91355cc9c6d4c1f43651a0aacc9a /usr.bin/fstat | |
parent | 8c8786a83750e0c9d15d9fc9011a03778eeae205 (diff) |
add -DUVM to CFLAGS if we run UVM
Diffstat (limited to 'usr.bin/fstat')
-rw-r--r-- | usr.bin/fstat/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/fstat/Makefile b/usr.bin/fstat/Makefile index 8c6090f327c..fa40fd495ef 100644 --- a/usr.bin/fstat/Makefile +++ b/usr.bin/fstat/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 1998/06/25 06:21:33 deraadt Exp $ +# $OpenBSD: Makefile,v 1.5 1999/06/23 12:56:18 art Exp $ PROG= fstat DPADD= ${LIBKVM} @@ -8,3 +8,7 @@ BINGRP= kmem BINMODE=2555 .include <bsd.prog.mk> + +.if (${UVM} == "yes") +CFLAGS+=-DUVM +.endif |