diff options
author | 2001-08-03 17:57:14 +0000 | |
---|---|---|
committer | 2001-08-03 17:57:14 +0000 | |
commit | bb0f6cebd84c2489524c16895858c74936db5f60 (patch) | |
tree | 485373e7d0506f270fe58cc3fe891e9ccc2ffc26 | |
parent | Avoid warning when building with vga on isa without vga on pci; ok mickey@ (diff) | |
download | wireguard-openbsd-bb0f6cebd84c2489524c16895858c74936db5f60.tar.xz wireguard-openbsd-bb0f6cebd84c2489524c16895858c74936db5f60.zip |
fix building w/o obj
-rw-r--r-- | usr.sbin/altq/altqd/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/altq/altqd/Makefile b/usr.sbin/altq/altqd/Makefile index 7f66095609a..18a6e2d682b 100644 --- a/usr.sbin/altq/altqd/Makefile +++ b/usr.sbin/altq/altqd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1.1.1 2001/06/27 18:23:16 kjc Exp $ +# $OpenBSD: Makefile,v 1.2 2001/08/03 17:57:14 jakob Exp $ # $NetBSD: Makefile,v 1.3 2001/01/11 13:15:06 enami Exp $ .include <bsd.own.mk> @@ -10,6 +10,8 @@ SRCS= altqd.c libaltq2.c CPPFLAGS+= -DALTQ -I${.CURDIR}/../libaltq +.include <bsd.obj.mk> + .if exists(${.CURDIR}/../libaltq/${__objdir}) LDADD+= -L${.CURDIR}/../libaltq/${__objdir} -laltq DPADD+= ${.CURDIR}/../libaltq/${__objdir}/libaltq.a |