diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-11-13 21:00:32 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-11-13 21:00:32 +0000 |
commit | 41941c0cb63718484770122a3133f36fc08526a2 (patch) | |
tree | cc7ddf26463d9d1bde36667dcdf0c7c6c81fcdff /usr.sbin/hostapd | |
parent | a292792625d64e81f25f66965dd55a681c6fb018 (diff) |
properly use LDADD and DPADD
Diffstat (limited to 'usr.sbin/hostapd')
-rw-r--r-- | usr.sbin/hostapd/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/hostapd/Makefile b/usr.sbin/hostapd/Makefile index 69e1c7d45c4..45956a312e4 100644 --- a/usr.sbin/hostapd/Makefile +++ b/usr.sbin/hostapd/Makefile @@ -1,10 +1,11 @@ -# $OpenBSD: Makefile,v 1.5 2006/05/15 20:53:02 reyk Exp $ +# $OpenBSD: Makefile,v 1.6 2006/11/13 21:00:31 deraadt Exp $ PROG= hostapd SRCS= privsep.c apme.c handle.c iapp.c llc.c hostapd.c \ print-802_11.c roaming.c parse.y MAN= hostapd.8 hostapd.conf.5 -LDADD= ${LIBEVENT} +LDADD= -levent +DPADD= ${LIBEVENT} CFLAGS+= -Wall -I${.CURDIR} CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes CFLAGS+= -Wmissing-declarations |