Merge illumos-gate
[unleashed.git] / usr / src / cmd / cmd-inet / usr.lib / ilbd / Makefile
blob7b238ab7196f834bc0ae721a0136ad75754f1da7
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
21 # Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
23 # Copyright (c) 2018, Joyent, Inc.
25 ILBD= ilbd
26 PROG= $(ILBD)
27 MANIFEST= ilbd.xml
29 ILBD_OBJS= ilbd_main.o ilbd_support.o ilbd_sg.o ilbd_rules.o ilbd_hc.o \
30 ilbd_nat.o ilbd_scf.o
31 ILBD_SRCS= $(ILBD_OBJS:%.o=%.c)
32 HDRS= ilbd.h
34 LIB_INC= $(SRC)/lib/libilb/common
36 OBJS= $(ILBD_OBJS)
37 SRCS= $(ILBD_SRCS)
39 ILBSUBDIRS= ilb
41 include ../../../Makefile.cmd
42 include ../../../Makefile.ctf
43 include ../../Makefile.cmd-inet
45 ROOTMANIFESTDIR= $(ROOTSVCNETWORK)/loadbalancer
47 CHECKHDRS= $(HDRS:%.h=%.check)
49 CPPFLAGS += -I$(CMDINETCOMMONDIR)
50 CPPFLAGS += -I$(LIB_INC)
51 CPPFLAGS += -I$(SRCTOP)/include
53 CERRWARN += -Wno-switch
54 CERRWARN += -Wno-uninitialized
55 CERRWARN += -Wno-unused-label
57 # not linted
58 SMATCH=off
60 CSTD = $(CSTD_GNU99)
62 # I18n
63 POFILE = $(ILBD).po
64 POFILES = $(ILBD_SRCS:%.c=%.po)
66 all:= TARGET= all
67 install:= TARGET= install
68 clean:= TARGET= clean
69 clobber:= TARGET= clobber
72 LDLIBS += -lcmdutils -lsecdb -lilb -lscf -linetutil
74 .KEEP_STATE:
76 all: $(PROG)
78 $(ILBD): $(OBJS)
79 $(LINK.c) $(OBJS) -o $@ $(LDLIBS) $(CTFMERGE_HOOK)
80 $(POST_PROCESS)
82 include ../Makefile.lib
84 install: all $(ROOTLIBINETPROG) $(ETCILBDFILES) $(ROOTMANIFEST)
86 check: $(CHKMANIFEST) $(CHECKHDRS)
88 clean:
89 $(RM) $(OBJS)
91 $(POFILE): $(POFILES)
92 $(RM) $@
93 $(CAT) $(POFILES) > $@
95 all install clean clobber: $(ILBSUBDIRS)
97 include ../../../Makefile.targ
99 $(ILBSUBDIRS): FRC
100 @cd $@; pwd; $(MAKE) $(TARGET)
102 FRC: