xref: /illumos-gate/usr/src/cmd/cmd-inet/usr.lib/ilbd/Makefile (revision 33efde4275d24731ef87927237b0ffb0630b6b2d)
1#
2# CDDL HEADER START
3#
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.
7#
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.
12#
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]
18#
19# CDDL HEADER END
20#
21# Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
22#
23# Copyright (c) 2018, Joyent, Inc.
24
25ILBD=		ilbd
26PROG=		$(ILBD)
27MANIFEST=	ilbd.xml
28
29ILBD_OBJS=	ilbd_main.o ilbd_support.o ilbd_sg.o ilbd_rules.o ilbd_hc.o \
30		ilbd_nat.o ilbd_scf.o
31ILBD_SRCS=	$(ILBD_OBJS:%.o=%.c)
32HDRS=		ilbd.h
33
34LIB_INC=	$(SRC)/lib/libilb/common
35
36OBJS=		$(ILBD_OBJS)
37SRCS=		$(ILBD_SRCS)
38
39ILBSUBDIRS=	ilb
40
41include		../../../Makefile.cmd
42include		../../../Makefile.ctf
43include		../../Makefile.cmd-inet
44
45ROOTMANIFESTDIR=	$(ROOTSVCNETWORK)/loadbalancer
46
47CHECKHDRS=	$(HDRS:%.h=%.check)
48
49CPPFLAGS +=	-D_FILE_OFFSET_BITS=64 -I$(CMDINETCOMMONDIR) -D_REENTRANT
50CPPFLAGS +=	-I$(LIB_INC)
51CPPFLAGS +=	-I$(SRC)/uts/common
52
53CERRWARN +=	-_gcc=-Wno-switch
54CERRWARN +=	$(CNOWARN_UNINIT)
55
56# not linted
57SMATCH=off
58
59CSTD =      $(CSTD_GNU99)
60
61# I18n
62POFILE =        $(ILBD).po
63POFILES =       $(ILBD_SRCS:%.c=%.po)
64
65all:=		TARGET= all
66install:=	TARGET= install
67clean:=		TARGET= clean
68clobber:=	TARGET= clobber
69
70
71LDLIBS +=	-lcmdutils -lsocket -lsecdb -lnsl -lilb -lscf -linetutil -lbsm
72
73.KEEP_STATE:
74
75all:		$(PROG)
76
77$(ILBD): 	$(OBJS)
78		$(LINK.c) $(OBJS) -o $@ $(LDLIBS) $(CTFMERGE_HOOK)
79		$(POST_PROCESS)
80
81include ../Makefile.lib
82
83install:	all $(ROOTLIBINETPROG) $(ETCILBDFILES) $(ROOTMANIFEST)
84
85check:	$(CHKMANIFEST) $(CHECKHDRS)
86
87clean:
88	$(RM) $(OBJS)
89
90$(POFILE):	$(POFILES)
91		$(RM) $@
92		$(CAT) $(POFILES) > $@
93
94all install clean clobber: $(ILBSUBDIRS)
95
96include		../../../Makefile.targ
97
98$(ILBSUBDIRS): FRC
99	@cd $@; pwd; $(MAKE) $(TARGET)
100
101FRC:
102