dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / cmd / sgs / yacc / Makefile.com
blobb1e31f505eccdf270b8028588a195b6e9e4092a9
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 2015 Gary Mills
23 # Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
24 # Use is subject to license terms.
27 PROG=           yacc
29 COMOBJS=        y1.o y2.o y3.o y4.o
30 POBJECTS=       $(COMOBJS)
31 POBJS=          $(POBJECTS:%=objs/%)
33 OBJECTS=        libmai.o libzer.o
35 LIBRARY=        liby.a
36 VERS=           .1
37 YACCPAR=        yaccpar
39 include ../../../../lib/Makefile.lib
41 SRCDIR =        ../common
43 # Override default source file derivation rule (in Makefile.lib)
44 # from objects
46 COMSRCS=        $(COMOBJS:%.o=../common/%.c)
47 LIBSRCS=        $(OBJECTS:%.o=../common/%.c)
48 SRCS=           $(COMSRCS) $(LIBSRCS)
50 LIBS =          $(DYNLIB)
52 # Tune ZDEFS to ignore undefined symbols for building the yacc shared library
53 # since these symbols (mainly yyparse) are to be resolved elsewhere.
55 $(DYNLIB):= ZDEFS = $(ZNODEFS)
56 $(DYNLIBCCC):= ZDEFS = $(ZNODEFS)
58 INCLIST=        -I../../include -I../../include/$(MACH)
59 CPPFLAGS=       $(INCLIST) $(DEFLIST) $(CPPFLAGS.master)
60 $(PROG):=       LDLIBS = $(LDLIBS.cmd)
61 BUILD.AR=       $(AR) $(ARFLAGS) $@ `$(LORDER) $(OBJS) | $(TSORT)`
63 C99MODE= $(C99_ENABLE)
64 CERRWARN += -Wno-parentheses
65 CERRWARN += -Wno-uninitialized
67 $(ROOTPROG):= FILEMODE = 0555
69 ROOTYACCPAR=    $(YACCPAR:%=$(ROOTSHLIBCCS)/%)
71 DYNLINKLIBDIR=  $(ROOTLIBDIR)
72 DYNLINKLIB=     $(LIBLINKS:%=$(DYNLINKLIBDIR)/%)
74 LDLIBS += -lc
76 CLOBBERFILES += $(LIBS) $(LIBRARY)