1 # $NetBSD: Makefile.common,v 1.8 2025/09/18 03:36:01 mrg 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 7 CPPFLAGS+= -DSMALL 8 .endif 9 10 DPADD+= ${LIBUTIL} ${LIBPROP} 11 LDADD+= -lutil -lprop 12 13 INCS+= af_inetany.h env.h extern.h media.h parse.h util.h 14 SRCS+= 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 17 SRCS+= ieee80211.c 18 .endif 19 .ifndef SMALLPROG 20 SRCS+= agr.c l2tp.c lagg.c 21 .endif 22 23 COPTS.parse.c+= ${CC_WNO_CALLOC_TRANSPOSED_ARGS} 24