8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / cmd / cmd-inet / usr.lib / ilbd / Makefile
blobd00653d4ebae94b240d1a654f851d06cd834990f
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.
24 ILBD= ilbd
25 PROG= $(ILBD)
26 MANIFEST= ilbd.xml
28 ILBD_OBJS= ilbd_main.o ilbd_support.o ilbd_sg.o ilbd_rules.o ilbd_hc.o \
29 ilbd_nat.o ilbd_scf.o
30 ILBD_SRCS= $(ILBD_OBJS:%.o=%.c)
31 HDRS= ilbd.h
33 LIB_INC= $(SRC)/lib/libilb/common
35 OBJS= $(ILBD_OBJS)
36 SRCS= $(ILBD_SRCS)
38 ILBSUBDIRS= ilb
40 include ../../../Makefile.cmd
41 include ../../../Makefile.ctf
42 include ../../Makefile.cmd-inet
44 ROOTMANIFESTDIR= $(ROOTSVCNETWORK)/loadbalancer
46 CHECKHDRS= $(HDRS:%.h=%.check)
48 CPPFLAGS += -D_FILE_OFFSET_BITS=64 -I$(CMDINETCOMMONDIR) -D_REENTRANT
49 CPPFLAGS += -I$(LIB_INC)
50 CPPFLAGS += -I$(SRC)/uts/common
52 CERRWARN += -_gcc=-Wno-switch
53 CERRWARN += -_gcc=-Wno-uninitialized
54 CERRWARN += -_gcc=-Wno-unused-label
56 C99MODE = $(C99_ENABLE)
58 # I18n
59 POFILE = $(ILBD).po
60 POFILES = $(ILBD_SRCS:%.c=%.po)
62 all:= TARGET= all
63 install:= TARGET= install
64 clean:= TARGET= clean
65 clobber:= TARGET= clobber
66 lint:= TARGET= lint
69 LDLIBS += -lcmdutils -lsocket -lsecdb -lnsl -lilb -lscf -linetutil -lbsm
71 .KEEP_STATE:
73 all: $(PROG)
75 $(ILBD): $(OBJS)
76 $(LINK.c) $(OBJS) -o $@ $(LDLIBS) $(CTFMERGE_HOOK)
77 $(POST_PROCESS)
79 include ../Makefile.lib
81 install: all $(ROOTLIBINETPROG) $(ETCILBDFILES) $(ROOTMANIFEST)
83 check: $(CHKMANIFEST) $(CHECKHDRS)
85 clean:
86 $(RM) $(OBJS)
88 lint:
89 $(LINT.c) $(ILBD_SRCS) $(LDLIBS)
91 $(POFILE): $(POFILES)
92 $(RM) $@
93 $(CAT) $(POFILES) > $@
95 all install clean clobber lint: $(ILBSUBDIRS)
97 include ../../../Makefile.targ
99 $(ILBSUBDIRS): FRC
100 @cd $@; pwd; $(MAKE) $(TARGET)
102 FRC: