xref: /netbsd-src/sbin/ifconfig/Makefile.common (revision b2c35e17b976cf7ccd7250c86c6f5e95090ed636)
1#	$NetBSD: Makefile.common,v 1.7 2021/05/17 04:07:42 yamaguchi 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 lagg.c
21.endif
22