Home | History | Annotate | Line # | Download | only in ifconfig
      1  1.8       mrg #	$NetBSD: Makefile.common,v 1.8 2025/09/18 03:36:01 mrg Exp $
      2  1.1       rin 
      3  1.1       rin # shared stuff with src/distrib/utils/x_ifconfig for install media.
      4  1.1       rin # stuff not required by install media should be into Makefile.
      5  1.1       rin 
      6  1.2       rin .ifdef SMALLPROG
      7  1.3       rin CPPFLAGS+=	-DSMALL
      8  1.2       rin .endif
      9  1.2       rin 
     10  1.3       rin DPADD+=		${LIBUTIL} ${LIBPROP}
     11  1.3       rin LDADD+=		-lutil -lprop
     12  1.1       rin 
     13  1.3       rin INCS+=		af_inetany.h env.h extern.h media.h parse.h util.h
     14  1.6    martin SRCS+=		af_inet.c af_inetany.c env.c ether.c \
     15  1.5  christos 		ifconfig.c media.c parse.c tunnel.c util.c vlan.c
     16  1.6    martin .ifndef	NOIEEE80211
     17  1.6    martin SRCS+=		ieee80211.c
     18  1.6    martin .endif
     19  1.5  christos .ifndef SMALLPROG
     20  1.7  yamaguch SRCS+=		agr.c l2tp.c lagg.c
     21  1.5  christos .endif
     22  1.8       mrg 
     23  1.8       mrg COPTS.parse.c+=	${CC_WNO_CALLOC_TRANSPOSED_ARGS}
     24