xref: /netbsd-src/sbin/ifconfig/Makefile.common (revision 9fb66d812c00ebfb445c0b47dea128f32aa6fe96)
1#	$NetBSD: Makefile.common,v 1.6 2021/03/01 16:47:48 martin Exp $
2
3# shared stuff with src/distrib/utils/x_ifconfig for install media.
4# stuff not required by install media should be into Makefile.
5
6.ifdef SMALLPROG
7CPPFLAGS+=	-DSMALL
8.endif
9
10DPADD+=		${LIBUTIL} ${LIBPROP}
11LDADD+=		-lutil -lprop
12
13INCS+=		af_inetany.h env.h extern.h media.h parse.h util.h
14SRCS+=		af_inet.c af_inetany.c env.c ether.c \
15		ifconfig.c media.c parse.c tunnel.c util.c vlan.c
16.ifndef	NOIEEE80211
17SRCS+=		ieee80211.c
18.endif
19.ifndef SMALLPROG
20SRCS+=		agr.c l2tp.c
21.endif
22