summaryrefslogtreecommitdiff
path: root/usr.sbin/hostapd/Makefile
diff options
context:
space:
mode:
authorReyk Floeter <reyk@cvs.openbsd.org>2005-04-13 18:12:24 +0000
committerReyk Floeter <reyk@cvs.openbsd.org>2005-04-13 18:12:24 +0000
commitfbd9185cd25b95eabb882ad60bd5546ac6bfc50d (patch)
treed646baeb201f349c253e6db5e2dbabb2d950f753 /usr.sbin/hostapd/Makefile
parent9e547b0e368e4f157730b7c08e4e626b8df8038b (diff)
add the initial version of the OpenBSD hostapd daemon
ok deraadt@
Diffstat (limited to 'usr.sbin/hostapd/Makefile')
-rw-r--r--usr.sbin/hostapd/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/usr.sbin/hostapd/Makefile b/usr.sbin/hostapd/Makefile
new file mode 100644
index 00000000000..b34d30b6606
--- /dev/null
+++ b/usr.sbin/hostapd/Makefile
@@ -0,0 +1,14 @@
+# $OpenBSD: Makefile,v 1.1 2005/04/13 18:12:23 reyk Exp $
+
+PROG= hostapd
+SRCS= privsep.c apme.c iapp.c llc.c hostapd.c parse.y
+MAN= hostapd.8 hostapd.conf.5
+LDADD= ${LIBEVENT}
+CFLAGS+= -Wall -pedantic -I${.CURDIR}
+CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
+CFLAGS+= -Wmissing-declarations
+CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
+CFLAGS+= -Wsign-compare
+CLEANFILES= y.tab.h
+
+.include <bsd.prog.mk>