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
24 ILBD= ilbd
25 PROG= $(ILBD)
26 MANIFEST= ilbd.xml
27
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
32
33 LIB_INC= $(SRC)/lib/libilb/common
34
35 OBJS= $(ILBD_OBJS)
36 SRCS= $(ILBD_SRCS)
37
38 ILBSUBDIRS= ilb
39
40 include ../../../Makefile.cmd
41 include ../../../Makefile.ctf
42 include ../../Makefile.cmd-inet
43
44 ROOTMANIFESTDIR= $(ROOTSVCNETWORK)/loadbalancer
45
46 CHECKHDRS= $(HDRS:%.h=%.check)
47
48 CPPFLAGS += -D_FILE_OFFSET_BITS=64 -I$(CMDINETCOMMONDIR) -D_REENTRANT
49 CPPFLAGS += -I$(LIB_INC)
50 CPPFLAGS += -I$(SRC)/uts/common
51
52 CERRWARN += -_gcc=-Wno-switch
53 CERRWARN += -_gcc=-Wno-uninitialized
54 CERRWARN += -_gcc=-Wno-unused-label
55
56 CSTD = $(CSTD_GNU99)
57
58 # I18n
59 POFILE = $(ILBD).po
60 POFILES = $(ILBD_SRCS:%.c=%.po)
61
62 all:= TARGET= all
63 install:= TARGET= install
64 clean:= TARGET= clean
65 clobber:= TARGET= clobber
66 lint:= TARGET= lint
67
68
69 LDLIBS += -lcmdutils -lsocket -lsecdb -lnsl -lilb -lscf -linetutil -lbsm
70
71 .KEEP_STATE:
72
73 all: $(PROG)
74
75 $(ILBD): $(OBJS)
|
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
25 ILBD= ilbd
26 PROG= $(ILBD)
27 MANIFEST= ilbd.xml
28
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
33
34 LIB_INC= $(SRC)/lib/libilb/common
35
36 OBJS= $(ILBD_OBJS)
37 SRCS= $(ILBD_SRCS)
38
39 ILBSUBDIRS= ilb
40
41 include ../../../Makefile.cmd
42 include ../../../Makefile.ctf
43 include ../../Makefile.cmd-inet
44
45 ROOTMANIFESTDIR= $(ROOTSVCNETWORK)/loadbalancer
46
47 CHECKHDRS= $(HDRS:%.h=%.check)
48
49 CPPFLAGS += -D_FILE_OFFSET_BITS=64 -I$(CMDINETCOMMONDIR) -D_REENTRANT
50 CPPFLAGS += -I$(LIB_INC)
51 CPPFLAGS += -I$(SRC)/uts/common
52
53 CERRWARN += -_gcc=-Wno-switch
54 CERRWARN += -_gcc=-Wno-uninitialized
55 CERRWARN += -_gcc=-Wno-unused-label
56
57 # not linted
58 SMATCH=off
59
60 CSTD = $(CSTD_GNU99)
61
62 # I18n
63 POFILE = $(ILBD).po
64 POFILES = $(ILBD_SRCS:%.c=%.po)
65
66 all:= TARGET= all
67 install:= TARGET= install
68 clean:= TARGET= clean
69 clobber:= TARGET= clobber
70 lint:= TARGET= lint
71
72
73 LDLIBS += -lcmdutils -lsocket -lsecdb -lnsl -lilb -lscf -linetutil -lbsm
74
75 .KEEP_STATE:
76
77 all: $(PROG)
78
79 $(ILBD): $(OBJS)
|