xref: /illumos-gate/usr/src/cmd/svc/svccfg/Makefile (revision 5801b0f0)
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
22#
23# Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
24# Copyright (c) 2018, Joyent, Inc.
25#
26
27MYPROG =	svccfg
28PROG =		$(MYPROG)
29
30SRCS  =		svccfg_main.c \
31		svccfg_engine.c \
32		svccfg_internal.c \
33		svccfg_libscf.c \
34		svccfg_tmpl.c \
35		svccfg_xml.c \
36		svccfg_help.c
37
38LNTS =		$(SRCS:%.c=%.ln) \
39		manifest_find.ln \
40		manifest_hash.ln
41
42MYOBJS =	$(SRCS:%.c=%.o) \
43		svccfg_grammar.o \
44		svccfg_lex.o \
45		manifest_find.o \
46		manifest_hash.o \
47		notify_params.o
48OBJS =		$(MYOBJS)
49
50POFILES =	$(SRCS:%.c=%.po) \
51		svccfg_grammar.po \
52		svccfg_lex.po \
53		../common/manifest_find.po \
54		../common/manifest_hash.po
55
56include ../../Makefile.cmd
57include ../../Makefile.ctf
58
59POFILE =	$(PROG)_all.po
60
61NATIVE_BUILD=$(POUND_SIGN)
62$(NATIVE_BUILD)NOT_NATIVE=$(POUND_SIGN)
63
64$(NATIVE_BUILD)PROG = $(MYPROG:%=%-native)
65$(NATIVE_BUILD)OBJS = $(MYOBJS:%.o=%-native.o)
66
67# svccfg has a name clash with main() and libl.so.1.  However, svccfg must
68# still export a number of "yy*" (libl) interfaces.  Reduce all other symbols
69# to local scope.
70MAPFILES +=	$(MAPFILE.LEX) $(MAPFILE.NGB)
71MAPOPTS =	$(MAPFILES:%=-M%)
72
73MYCPPFLAGS =	-I ../common -I$(ADJUNCT_PROTO)/usr/include/libxml2
74CPPFLAGS +=	$(MYCPPFLAGS)
75LDFLAGS +=	$(MAPOPTS)
76
77CERRWARN +=	-_gcc=-Wno-unused-label
78CERRWARN +=	-_gcc=-Wno-implicit-function-declaration
79CERRWARN +=	-_gcc=-Wno-switch
80CERRWARN +=	$(CNOWARN_UNINIT)
81CERRWARN +=	-_gcc=-Wno-unused-variable
82CERRWARN +=	-_gcc=-Wno-parentheses
83
84# not linted
85SMATCH=off
86
87LFLAGS = -t
88YFLAGS = -d
89
90CLOBBERFILES += svccfg_lex.c svccfg_grammar.c svccfg_grammar.h \
91    $(MYPROG:%=%-native)
92
93SVCCFG_EXTRA_LIBS = -lxml2 -lscf -ll -luutil -lumem -lmd5 -lnvpair
94$(NOT_NATIVE)SVCCFG_EXTRA_LIBS += -ltecla
95NATIVE_LIBS += libxml2.so
96
97LIBSCF		= $(SRC)/lib/libscf
98LIBTECLA	= $(SRC)/lib/libtecla		# just for the header
99LIBUUTIL	= $(SRC)/lib/libuutil
100
101lint := LINTFLAGS = -mux
102lint := SVCCFG_EXTRA_LIBS = -lscf -ll -luutil -lumem -lmd5 -lnvpair
103
104LDLIBS += $(SVCCFG_EXTRA_LIBS)
105
106$(NATIVE_BUILD)CC =	$(NATIVECC)
107$(NATIVE_BUILD)LD =	$(NATIVELD)
108$(NATIVE_BUILD)CFLAGS =	$(NATIVE_CFLAGS)
109$(NATIVE_BUILD)CPPFLAGS = \
110	-DNATIVE_BUILD \
111	$(MYCPPFLAGS) \
112	-I$(LIBSCF)/inc \
113	-I$(LIBTECLA) \
114	-I$(LIBUUTIL)/common
115$(NATIVE_BUILD)LDFLAGS = $(BDIRECT)
116$(NATIVE_BUILD)LDLIBS = \
117	-L$(LIBUUTIL)/native -R $(LIBUUTIL)/native \
118	-L$(LIBSCF)/native -R $(LIBSCF)/native \
119	-L$(ADJUNCT_PROTO)/usr/lib -R$(ADJUNCT_PROTO)/usr/lib \
120	$(SVCCFG_EXTRA_LIBS)
121
122svccfg_lex.o svccfg_grammar.o := CCVERBOSE =
123
124svccfg_help.po := XGETFLAGS =	-a
125
126.KEEP_STATE:
127.PARALLEL: $(OBJS) $(LNTS)
128
129all debug: $(PROG)
130
131native: FRC
132	@cd $(LIBUUTIL)/native; pwd; $(MAKE) $(MFLAGS) install
133	@cd $(LIBSCF)/native; pwd; $(MAKE) $(MFLAGS) install
134	@NATIVE_BUILD= $(MAKE) $(MFLAGS) all
135
136$(PROG): $(OBJS) $(MAPFILES)
137	$(LINK.c) -o $@ $(OBJS) $(LDLIBS)
138	$(POST_PROCESS)
139
140$(POFILES): svccfg_grammar.h
141
142$(POFILE): $(POFILES)
143	cat $(POFILES) > $(POFILE)
144
145install: all $(ROOTUSRSBINPROG)
146
147svccfg_lex.c: svccfg.l svccfg_grammar.h
148	$(LEX) $(LFLAGS) svccfg.l > $@
149
150svccfg_help.o: svccfg_grammar.h
151svccfg_help-native.o: svccfg_grammar.h
152
153svccfg_grammar.h svccfg_grammar.c: svccfg.y
154	$(YACC) $(YFLAGS) svccfg.y
155	@$(MV) y.tab.h svccfg_grammar.h
156	@$(MV) y.tab.c svccfg_grammar.c
157
158clean: FRC
159	$(RM) $(MYOBJS) $(MYOBJS:%.o=%-native.o) $(LNTS)
160
161lint: $(LNTS)
162	$(LINT.c) $(LINTFLAGS) $(LNTS) $(LDLIBS)
163
164%-native.o: %.c
165	$(COMPILE.c) -o $@ $<
166	$(POST_PROCESS_O)
167
168%-native.o: ../common/%.c
169	$(COMPILE.c) -o $@ $<
170	$(POST_PROCESS_O)
171
172%.o: ../common/%.c
173	$(COMPILE.c) $(OUTPUT_OPTION) $<
174	$(POST_PROCESS_O)
175
176%.ln: ../common/%.c
177	$(LINT.c) $(OUTPUT_OPTION) -c $<
178
179include ../../Makefile.targ
180
181FRC:
182