Merge illumos-gate
[unleashed.git] / usr / src / cmd / pools / poolcfg / Makefile
blob4e6eeebcd398985bb9b2d48fae2111344ab82355
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
22 # Copyright 2007 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
25 # Copyright (c) 2018, Joyent, Inc.
27 PROG = poolcfg
28 OBJS = poolcfg_lex.o poolcfg_grammar.o
29 SRCS = $(OBJS:%.o=%.c) $(COMMON_SRCS)
30 POFILES = $(OBJS:.o=.po)
31 POFILE = poolcfg.po
33 include ../../Makefile.cmd
34 include ../Makefile.pools
36 # poolcf has a name clash with main() and libl.so.1. However, poolcfg must
37 # still export a number of "yy*" (libl) interfaces. Reduce all other symbols
38 # to local scope.
39 MAPFILES += $(MAPFILE.LEX) $(MAPFILE.NGB)
40 MAPOPTS = $(MAPFILES:%=-Wl,-M%)
42 LFLAGS += -t
43 YFLAGS = -d
44 CFLAGS += -I$(POOLSCOMMONDIR)
45 LDFLAGS += $(MAPOPTS)
46 LDLIBS += -lpool -ll
47 XGETFLAGS = -a
48 CLOBBERFILES += poolcfg_lex.c poolcfg_grammar.c poolcfg_grammar.h
50 # not linted
51 SMATCH=off
53 .KEEP_STATE:
55 all: $(PROG)
57 $(PROG): $(OBJS) $(COMMON_OBJS) $(MAPFILES)
58 $(LINK.c) -o $@ $(OBJS) $(COMMON_OBJS) $(LDLIBS)
59 $(POST_PROCESS)
61 %.o : $(POOLSCOMMONDIR)/%.c
62 $(COMPILE.c) -o $@ $<
63 $(POST_PROCESS_O)
65 install: all $(ROOTUSRSBINPROG)
67 poolcfg_lex.c: poolcfg.l poolcfg_grammar.h
68 $(LEX) $(LFLAGS) poolcfg.l > $@
70 poolcfg_grammar.h poolcfg_grammar.c: poolcfg.y
71 $(YACC) $(YFLAGS) poolcfg.y
72 @$(MV) y.tab.h poolcfg_grammar.h
73 @$(MV) y.tab.c poolcfg_grammar.c
75 clean:
76 $(RM) $(OBJS) $(COMMON_OBJS) $(POFILES)
78 $(POFILE): $(POFILES)
79 $(RM) $@; cat $(POFILES) > $@
81 include ../../Makefile.targ