xref: /illumos-gate/usr/src/cmd/sgs/yacc/Makefile.com (revision cd61ae21)
17c478bd9Sstevel@tonic-gate#
27c478bd9Sstevel@tonic-gate# CDDL HEADER START
37c478bd9Sstevel@tonic-gate#
47c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the
5f808c858Sraf# Common Development and Distribution License (the "License").
6f808c858Sraf# You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate#
87c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate# and limitations under the License.
127c478bd9Sstevel@tonic-gate#
137c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate#
197c478bd9Sstevel@tonic-gate# CDDL HEADER END
207c478bd9Sstevel@tonic-gate#
217c478bd9Sstevel@tonic-gate#
22fca42680SGary Mills# Copyright 2015 Gary Mills
231dd08564Sab196087# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate# Use is subject to license terms.
257c478bd9Sstevel@tonic-gate#
265661bb76SJohn Levon# Copyright (c) 2018, Joyent, Inc.
27cf9a187cSAndy Fiddaman# Copyright 2019 OmniOS Community Edition (OmniOSce) Association.
28cf9a187cSAndy Fiddaman#
297c478bd9Sstevel@tonic-gate
301dd08564Sab196087PROG=		yacc
311dd08564Sab196087
327c478bd9Sstevel@tonic-gateCOMOBJS=	y1.o y2.o y3.o y4.o
3367298654SdamicoPOBJECTS=	$(COMOBJS)
347c478bd9Sstevel@tonic-gatePOBJS=		$(POBJECTS:%=objs/%)
357c478bd9Sstevel@tonic-gate
367c478bd9Sstevel@tonic-gateOBJECTS=	libmai.o libzer.o
377c478bd9Sstevel@tonic-gate
387c478bd9Sstevel@tonic-gateLIBRARY=	liby.a
397c478bd9Sstevel@tonic-gateVERS=		.1
407c478bd9Sstevel@tonic-gateYACCPAR=	yaccpar
417c478bd9Sstevel@tonic-gate
427c478bd9Sstevel@tonic-gateinclude ../../../../lib/Makefile.lib
437c478bd9Sstevel@tonic-gate
44*cd61ae21SRichard LoweCOMPATLINKS=	usr/ccs/lib/liby.so
45*cd61ae21SRichard LoweCOMPATLINKS64=	usr/ccs/lib/$(MACH64)/liby.so
46*cd61ae21SRichard Lowe
47*cd61ae21SRichard Lowe$(ROOT)/usr/ccs/lib/liby.so := COMPATLINKTARGET=../../lib/liby.so.1
48*cd61ae21SRichard Lowe$(ROOT)/usr/ccs/lib/$(MACH64)/liby.so:= \
49*cd61ae21SRichard Lowe	COMPATLINKTARGET=../../../lib/$(MACH64)/liby.so.1
50*cd61ae21SRichard Lowe
51f808c858SrafSRCDIR =	../common
52f808c858Sraf
537c478bd9Sstevel@tonic-gate# Override default source file derivation rule (in Makefile.lib)
547c478bd9Sstevel@tonic-gate# from objects
557c478bd9Sstevel@tonic-gate#
561dd08564Sab196087COMSRCS=	$(COMOBJS:%.o=../common/%.c)
571dd08564Sab196087LIBSRCS=	$(OBJECTS:%.o=../common/%.c)
581dd08564Sab196087SRCS=		$(COMSRCS) $(LIBSRCS)
597c478bd9Sstevel@tonic-gate
60cf9a187cSAndy FiddamanLIBS =          $(DYNLIB)
61fca42680SGary Mills
627c478bd9Sstevel@tonic-gate# Tune ZDEFS to ignore undefined symbols for building the yacc shared library
637c478bd9Sstevel@tonic-gate# since these symbols (mainly yyparse) are to be resolved elsewhere.
647c478bd9Sstevel@tonic-gate#
657c478bd9Sstevel@tonic-gate$(DYNLIB):= ZDEFS = $(ZNODEFS)
667c478bd9Sstevel@tonic-gate$(DYNLIBCCC):= ZDEFS = $(ZNODEFS)
677c478bd9Sstevel@tonic-gate
687c478bd9Sstevel@tonic-gateINCLIST=	-I../../include -I../../include/$(MACH)
697c478bd9Sstevel@tonic-gateCPPFLAGS=	$(INCLIST) $(DEFLIST) $(CPPFLAGS.master)
70fca42680SGary Mills$(PROG):=	LDLIBS = $(LDLIBS.cmd)
71fca42680SGary Mills
72bd0ce624SYuri PankovCSTD= $(CSTD_GNU99)
73e29394bdSmike_sCFLAGS += $(CCVERBOSE)
74e29394bdSmike_sCFLAGS64 += $(CCVERBOSE)
757014882cSRichard LoweCERRWARN += -_gcc=-Wno-parentheses
76d3b5f563SJohn LevonCERRWARN += $(CNOWARN_UNINIT)
77e29394bdSmike_s
785661bb76SJohn Levon# not linted
795661bb76SJohn LevonSMATCH=off
805661bb76SJohn Levon
8167298654Sdamico$(ROOTPROG):= FILEMODE = 0555
827c478bd9Sstevel@tonic-gate
8367298654SdamicoROOTYACCPAR=	$(YACCPAR:%=$(ROOTSHLIBCCS)/%)
8467298654Sdamico
857c478bd9Sstevel@tonic-gateDYNLINKLIBDIR=	$(ROOTLIBDIR)
867c478bd9Sstevel@tonic-gateDYNLINKLIB=	$(LIBLINKS:%=$(DYNLINKLIBDIR)/%)
877c478bd9Sstevel@tonic-gate
88fca42680SGary MillsLDLIBS += -lc
897c478bd9Sstevel@tonic-gate
907c478bd9Sstevel@tonic-gateCLOBBERFILES +=	$(LIBS) $(LIBRARY)
91