dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / cmd / cmd-inet / usr.sbin / snoop / Makefile
blob9efebe9b9c0f026d872559771dab1c64c838238c
2 # CDDL HEADER START
4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License (the "License").
6 # You may not use this file except in compliance with the License.
8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 # or http://www.opensolaris.org/os/licensing.
10 # See the License for the specific language governing permissions
11 # and limitations under the License.
13 # When distributing Covered Code, include this CDDL HEADER in each
14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 # If applicable, add the following below this CDDL HEADER, with the
16 # fields enclosed by brackets "[]" replaced with your own identifying
17 # information: Portions Copyright [yyyy] [name of copyright owner]
19 # CDDL HEADER END
23 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
27 PROG= snoop
28 OBJS= nfs4_xdr.o snoop.o snoop_aarp.o snoop_adsp.o snoop_aecho.o \
29 snoop_apple.o snoop_arp.o snoop_atp.o snoop_bparam.o \
30 snoop_bpdu.o \
31 snoop_capture.o snoop_dhcp.o snoop_dhcpv6.o snoop_display.o \
32 snoop_dns.o snoop_ether.o \
33 snoop_filter.o snoop_http.o snoop_icmp.o snoop_igmp.o snoop_ip.o \
34 snoop_ipaddr.o snoop_ipsec.o snoop_isis.o \
35 snoop_ldap.o snoop_mip.o snoop_mount.o \
36 snoop_nbp.o snoop_netbios.o snoop_nfs.o snoop_nfs3.o snoop_nfs4.o \
37 snoop_nfs_acl.o snoop_nis.o snoop_nlm.o snoop_ntp.o \
38 snoop_pf.o snoop_ospf.o snoop_ospf6.o snoop_pmap.o snoop_ppp.o \
39 snoop_pppoe.o snoop_rip.o snoop_rip6.o snoop_rpc.o snoop_rpcprint.o \
40 snoop_rpcsec.o snoop_rport.o snoop_rquota.o snoop_rstat.o snoop_rtmp.o \
41 snoop_sctp.o snoop_slp.o snoop_smb.o snoop_socks.o snoop_solarnet.o \
42 snoop_tcp.o snoop_tftp.o snoop_trill.o snoop_udp.o snoop_zip.o
44 SRCS= $(OBJS:.o=.c)
45 HDRS= snoop.h snoop_mip.h at.h snoop_ospf.h snoop_ospf6.h
47 include ../../../Makefile.cmd
49 CPPFLAGS += -I. -I$(SRC)/common/net/dhcp \
50 -I$(SRCTOP)/include \
51 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
52 LDLIBS += -ldhcputil -ldlpi
53 LDFLAGS += $(MAPFILE.NGB:%=-Wl,-M%)
54 CERRWARN += -Wno-switch
55 CERRWARN += -Wno-implicit-function-declaration
56 CERRWARN += -Wno-uninitialized
57 CERRWARN += -Wno-clobbered
58 CERRWARN += -Wno-unused-value
59 CERRWARN += -Wno-parentheses
60 CERRWARN += -Wno-unused-variable
61 CERRWARN += -Wno-unused-label
62 CERRWARN += -Wno-unused-function
64 .KEEP_STATE:
66 .PARALLEL: $(OBJS)
68 all: $(PROG)
70 $(PROG): $(OBJS) $(MAPFILE.NGB)
71 $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
72 $(POST_PROCESS)
74 install: all $(ROOTUSRSBINPROG)
76 clean:
77 $(RM) $(OBJS)
80 include ../../../Makefile.targ