~ubuntu-branches/ubuntu/trusty/net-snmp/trusty

« back to all changes in this revision

Viewing changes to apps/snmpnetstat/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Steve Kowalik
  • Date: 2007-05-10 22:20:23 UTC
  • mto: (1.4.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 11.
  • Revision ID: james.westby@ubuntu.com-20070510222023-3fr07xb9i17xvq32
Tags: upstream-5.3.1
ImportĀ upstreamĀ versionĀ 5.3.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
#
4
4
 
5
5
top_builddir=../..
6
 
INSTALLBINPROGS=snmpnetstat53$(EXEEXT)
7
 
INSTALLBINSCRIPTS=$(srcdir)/snmpnetstat
 
6
INSTALLBINPROGS=snmpnetstat$(EXEEXT)
8
7
 
9
8
# use GNU vpath, if available, to only set a path for source and headers
10
9
# VPATH will pick up objects too, which is bad if you are sharing a
17
16
#
18
17
# build info
19
18
#
20
 
SRCS=   inet.c inet6.c if.c main.c route.c winstub.c ffs.c iquery.c
21
 
OBJS=   inet.o inet6.o if.o main.o route.o winstub.o ffs.o iquery.o
22
 
LOBJS=  inet.lo inet6.lo if.lo main.lo route.lo winstub.lo ffs.lo iquery.lo
23
 
TARG= snmpnetstat53$(EXEEXT)
 
19
SRCS=   inet.c inet6.c if.c main.c route.c winstub.c ffs.c
 
20
OBJS=   inet.o inet6.o if.o main.o route.o winstub.o ffs.o
 
21
LOBJS=  inet.lo inet6.lo if.lo main.lo route.lo winstub.lo ffs.lo
 
22
TARG= snmpnetstat$(EXEEXT)
24
23
 
25
24
CPPFLAGS= $(TOP_INCLUDES)  @CPPFLAGS@
26
25
 
29
28
 
30
29
all: standardall
31
30
 
32
 
snmpnetstat53$(EXEEXT): ${LOBJS} ${USELIBS}
 
31
snmpnetstat$(EXEEXT): ${LOBJS} ${USELIBS}
33
32
        ${LINK} -o $@ ${LOBJS} ${LOCAL_LIBS} ${LDFLAGS} ${LIBS}