diff options
Diffstat (limited to 'usr.sbin/hostapd/Makefile')
-rw-r--r-- | usr.sbin/hostapd/Makefile | 14 |
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> |