Merge commit 'b31320a79e2054c6739b5229259dbf98f3afc547' into merges
[unleashed.git] / usr / src / cmd / cmd-inet / usr.sbin / nwamcfg / Makefile
bloba35f26b9ae35e111287f3ad8f4bab89fd38ff37f
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
23 # Copyright 2010 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
25 # Copyright (c) 2016, Chris Fraire <cfraire@me.com>.
27 # cmd/cmd-inet/usr.sbin/nwamcfg/Makefile
29 PROG= nwamcfg
30 OBJS= nwamcfg.o nwamcfg_lex.o nwamcfg_grammar.tab.o
32 include ../../../Makefile.cmd
34 XGETFLAGS += -a -x $(PROG).xcl
35 LFLAGS += -t
36 LDLIBS += -ll -ltecla -lnwam -lumem
37 YFLAGS += -d -b nwamcfg_grammar
38 CLEANFILES += nwamcfg_lex.c nwamcfg_grammar.tab.c nwamcfg_grammar.tab.h
39 CLEANFILES += $(PROG).ln
41 CERRWARN += -Wno-switch
42 CERRWARN += -Wno-uninitialized
43 CERRWARN += -Wno-unused-variable
44 CERRWARN += -Wno-unused-label
45 CERRWARN += -Wno-implicit-function-declaration
47 .KEEP_STATE:
49 all: $(PROG)
51 $(PROG): $(OBJS)
52 $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
53 $(POST_PROCESS)
55 install: all $(ROOTUSRSBINPROG)
57 nwamcfg_lex.c: nwamcfg_lex.l nwamcfg_grammar.tab.h nwamcfg.h
58 $(LEX) $(LFLAGS) nwamcfg_lex.l > $@
60 nwamcfg_grammar.tab.h + nwamcfg_grammar.tab.c: nwamcfg_grammar.y nwamcfg.h
61 $(YACC) $(YFLAGS) nwamcfg_grammar.y
63 check: $(PROG).c $(PROG).h
64 $(CSTYLE) -pP $(PROG).c $(PROG).h
65 $(HDRCHK) $(PROG).h
67 clean:
68 $(RM) $(OBJS) $(CLEANFILES)
70 include ../../../Makefile.targ