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]
18 #
19 # CDDL HEADER END
20 #
21 #
22 # Copyright 2007 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
24 #
25
26 PROG= nc
27 OBJS= atomicio.o netcat.o socks.o
28
29 SRCS= $(OBJS:%.o=%.c)
30
31 include ../../../Makefile.cmd
32
33 LDLIBS += -lresolv -lsocket
34 CERRWARN += -_gcc=-Wno-uninitialized
35
36 .KEEP_STATE:
37
38 all: $(PROG)
39
40 $(PROG): $(OBJS)
41 $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
42 $(POST_PROCESS)
43
44 install: all $(ROOTPROG)
45
46 clean:
47 $(RM) $(PROG) $(OBJS)
48
49 lint: lint_SRCS
50
51 include ../../../Makefile.targ
|
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]
18 #
19 # CDDL HEADER END
20 #
21 #
22 # Copyright 2007 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
24 #
25
26 PROG= nc
27 OBJS= atomicio.o netcat.o socks.o
28
29 SRCS= $(OBJS:%.o=%.c)
30
31 include ../../../Makefile.cmd
32
33 LDLIBS += -lresolv -lsocket
34 CERRWARN += $(CNOWARN_UNINIT)
35
36 .KEEP_STATE:
37
38 all: $(PROG)
39
40 $(PROG): $(OBJS)
41 $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
42 $(POST_PROCESS)
43
44 install: all $(ROOTPROG)
45
46 clean:
47 $(RM) $(PROG) $(OBJS)
48
49 lint: lint_SRCS
50
51 include ../../../Makefile.targ
|