Home | History | Annotate | Line # | Download | only in ifconfig
Makefile.common revision 1.6
      1  1.6    martin #	$NetBSD: Makefile.common,v 1.6 2021/03/01 16:47:48 martin 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.5  christos SRCS+=		agr.c l2tp.c
     21  1.5  christos .endif
     22