18 #
19 # CDDL HEADER END
20 #
21 #
22 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
24 #
25 # Copyright 2013 Nexenta Systems, Inc. All rights reserved.
26 # Copyright (c) 2012, Joyent Inc. All rights reserved.
27 #
28
29 PROG= ipf ipfs ipmon ipnat ippool ipfstat
30 IPFPROG= ipftest
31
32 IPF_OBJS= ipf.o ipfcomp.o ipfzone.o ipf_y.o ipf_l.o
33 IPFS_OBJS= ipfs.o ipfzone.o
34 IPFSTAT_OBJS= ipfstat.o ipfzone.o
35 IPMON_OBJS= ipmon.o ipfzone.o ipmon_y.o ipmon_l.o
36 IPNAT_OBJS= ipnat.o ipfzone.o ipnat_y.o ipnat_l.o
37 IPPOOL_OBJS= ippool.o ipfzone.o ippool_y.o ippool_l.o
38 IPFTEST_OBJS= ipftest.o ipfzone.o \
39 ip_fil.o ip_state.o ip_compat.o \
40 ip_frag.o ip_nat.o ip_nat6.o fil.o \
41 ip_htable.o ip_lookup.o \
42 ip_proxy.o ip_auth.o ip_log.o \
43 ipf_y.o ipf_l.o \
44 ipnat_y.o ipnat_l.o \
45 ippool_y.o ippool_l.o \
46 ip_pool.o radix.o
47
48 OBJS= $(IPF_OBJS) $(IPFS_OBJS) $(IPFSTAT_OBJS) \
49 $(IPMON_OBJS) $(IPNAT_OBJS) $(IPPOOL_OBJS) $(IPFTEST_OBJS)
50
51 OBJSL= $(IPF_OBJS) $(IPFS_OBJS) $(IPFSTAT_OBJS) \
52 $(IPMON_OBJS) $(IPNAT_OBJS)
53
54 SRCS= $(OBJSL:%.o=../%.c)
55
56 include ../../../Makefile.cmd
57 include ../../Makefile.ipf
58
|
18 #
19 # CDDL HEADER END
20 #
21 #
22 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
24 #
25 # Copyright 2013 Nexenta Systems, Inc. All rights reserved.
26 # Copyright (c) 2012, Joyent Inc. All rights reserved.
27 #
28
29 PROG= ipf ipfs ipmon ipnat ippool ipfstat
30 IPFPROG= ipftest
31
32 IPF_OBJS= ipf.o ipfcomp.o ipfzone.o ipf_y.o ipf_l.o
33 IPFS_OBJS= ipfs.o ipfzone.o
34 IPFSTAT_OBJS= ipfstat.o ipfzone.o
35 IPMON_OBJS= ipmon.o ipfzone.o ipmon_y.o ipmon_l.o
36 IPNAT_OBJS= ipnat.o ipfzone.o ipnat_y.o ipnat_l.o
37 IPPOOL_OBJS= ippool.o ipfzone.o ippool_y.o ippool_l.o
38 IPFTEST_OBJS= cfw.o ipftest.o ipfzone.o \
39 ip_fil.o ip_state.o ip_compat.o \
40 ip_frag.o ip_nat.o ip_nat6.o fil.o \
41 ip_htable.o ip_lookup.o \
42 ip_proxy.o ip_auth.o ip_log.o \
43 ipf_y.o ipf_l.o \
44 ipnat_y.o ipnat_l.o \
45 ippool_y.o ippool_l.o \
46 ip_pool.o radix.o
47
48 OBJS= $(IPF_OBJS) $(IPFS_OBJS) $(IPFSTAT_OBJS) \
49 $(IPMON_OBJS) $(IPNAT_OBJS) $(IPPOOL_OBJS) $(IPFTEST_OBJS)
50
51 OBJSL= $(IPF_OBJS) $(IPFS_OBJS) $(IPFSTAT_OBJS) \
52 $(IPMON_OBJS) $(IPNAT_OBJS)
53
54 SRCS= $(OBJSL:%.o=../%.c)
55
56 include ../../../Makefile.cmd
57 include ../../Makefile.ipf
58
|