xref: /netbsd-src/sbin/ifconfig/Makefile.common (revision e6c7e151de239c49d2e38720a061ed9d1fa99309)
1#	$NetBSD: Makefile.common,v 1.5 2017/05/02 20:12:27 christos 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 ieee80211.c \
15		ifconfig.c media.c parse.c tunnel.c util.c vlan.c
16.ifndef SMALLPROG
17SRCS+=		agr.c l2tp.c
18.endif
19