xref: /illumos-gate/usr/src/cmd/sgs/lex/Makefile.com (revision 55855f50)
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
231dd08564Sab# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate# Use is subject to license terms.
257c478bd9Sstevel@tonic-gate#
26cf9a187cSAndy Fiddaman# Copyright 2019 OmniOS Community Edition (OmniOSce) Association.
27cf9a187cSAndy Fiddaman#
287c478bd9Sstevel@tonic-gate
291dd08564SabPROG=		lex
301dd08564Sab
317c478bd9Sstevel@tonic-gateMACHOBJS=	main.o sub1.o sub2.o sub3.o header.o parser.o
3267298654SdamicoPOBJECTS=	$(MACHOBJS)
337c478bd9Sstevel@tonic-gatePOBJS=		$(POBJECTS:%=objs/%)
347c478bd9Sstevel@tonic-gate
357c478bd9Sstevel@tonic-gateLIBRARY=	libl.a
367c478bd9Sstevel@tonic-gateVERS=		.1
377c478bd9Sstevel@tonic-gate
387c478bd9Sstevel@tonic-gateLIBOBJS=	allprint.o libmain.o reject.o yyless.o yywrap.o
397c478bd9Sstevel@tonic-gateLIBOBJS_W=	allprint_w.o reject_w.o yyless_w.o
407c478bd9Sstevel@tonic-gateLIBOBJS_E=	reject_e.o yyless_e.o
417c478bd9Sstevel@tonic-gateOBJECTS=	$(LIBOBJS) $(LIBOBJS_W) $(LIBOBJS_E)
427c478bd9Sstevel@tonic-gate
437c478bd9Sstevel@tonic-gateFORMS=		nceucform ncform nrform
447c478bd9Sstevel@tonic-gate
45cf9a187cSAndy Fiddamaninclude		../../../../lib/Makefile.lib
467c478bd9Sstevel@tonic-gate
47cd61ae21SRichard LoweCOMPATLINKS=	usr/ccs/lib/libl.so
48cd61ae21SRichard LoweCOMPATLINKS64=	usr/ccs/lib/$(MACH64)/libl.so
49cd61ae21SRichard Lowe
50cd61ae21SRichard Lowe$(ROOT)/usr/ccs/lib/libl.so := COMPATLINKTARGET=../../lib/libl.so.1
51cd61ae21SRichard Lowe$(ROOT)/usr/ccs/lib/$(MACH64)/libl.so:= \
52cd61ae21SRichard Lowe	COMPATLINKTARGET=../../../lib/$(MACH64)/libl.so.1
53cd61ae21SRichard Lowe
54f808c858SrafSRCDIR =	../common
55f808c858Sraf
56bd0ce624SYuri PankovCSTD=	$(CSTD_GNU99)
577c478bd9Sstevel@tonic-gate
58*55855f50SToomas Soome# unused labels in yaccpar
597014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-unused-label
607014882cSRichard Lowe
617c478bd9Sstevel@tonic-gate# Override default source file derivation rule (in Makefile.lib)
627c478bd9Sstevel@tonic-gate# from objects
637c478bd9Sstevel@tonic-gate#
641dd08564SabMACHSRCS=	$(MACHOBJS:%.o=../common/%.c)
651dd08564SabLIBSRCS =	$(LIBOBJS:%.o=../common/%.c)
661dd08564SabSRCS=		$(MACHSRCS) $(LIBSRCS)
677c478bd9Sstevel@tonic-gate
68cf9a187cSAndy FiddamanLIBS =          $(DYNLIB)
697c478bd9Sstevel@tonic-gate
707c478bd9Sstevel@tonic-gateINCLIST=	$(INCLIST_$(MACH)) -I../../include -I../../include/$(MACH)
717c478bd9Sstevel@tonic-gateDEFLIST=	-DELF
727c478bd9Sstevel@tonic-gate
737c478bd9Sstevel@tonic-gate# It is not very clean to base the conditional definitions as below, but
747c478bd9Sstevel@tonic-gate# this will have to do for now.
757c478bd9Sstevel@tonic-gate#
767c478bd9Sstevel@tonic-gate#$(LIBOBJS_W):=	DEFLIST = -DEUC -DJLSLEX  -DWOPTION -D$*=$*_w
777c478bd9Sstevel@tonic-gateobjs/%_w.o:=	DEFLIST = -DEUC -DJLSLEX  -DWOPTION -D$*=$*_w
787c478bd9Sstevel@tonic-gatepics/%_w.o:=	DEFLIST = -DEUC -DJLSLEX  -DWOPTION -D$*=$*_w
797c478bd9Sstevel@tonic-gate
807c478bd9Sstevel@tonic-gate#$(LIBOBJS_E):=	DEFLIST = -DEUC -DJLSLEX  -DEOPTION -D$*=$*_e
817c478bd9Sstevel@tonic-gateobjs/%_e.o:=	DEFLIST = -DEUC -DJLSLEX  -DEOPTION -D$*=$*_e
827c478bd9Sstevel@tonic-gatepics/%_e.o:=	DEFLIST = -DEUC -DJLSLEX  -DEOPTION -D$*=$*_e
837c478bd9Sstevel@tonic-gate
847c478bd9Sstevel@tonic-gateCPPFLAGS=	$(INCLIST) $(DEFLIST) $(CPPFLAGS.master)
85fca42680SGary Mills
8667298654Sdamico$(ROOTPROG):=	FILEMODE = 0555
8767298654Sdamico
8867298654SdamicoROOTFORMS=	$(FORMS:%=$(ROOTSHLIBCCS)/%)
897c478bd9Sstevel@tonic-gate
907c478bd9Sstevel@tonic-gateDYNLINKLIBDIR=	$(ROOTLIBDIR)
917c478bd9Sstevel@tonic-gateDYNLINKLIB=	$(LIBLINKS:%=$(DYNLINKLIBDIR)/%)
927c478bd9Sstevel@tonic-gate
937c478bd9Sstevel@tonic-gate# Need to make sure lib-make's are warning free
947c478bd9Sstevel@tonic-gate$(DYNLIB) :=	CFLAGS += $(CCVERBOSE)
957c478bd9Sstevel@tonic-gate$(DYNLIB) :=	CFLAGS64 += $(CCVERBOSE)
967c478bd9Sstevel@tonic-gate
97fca42680SGary MillsLDLIBS += -lc
987c478bd9Sstevel@tonic-gate
99cf9a187cSAndy FiddamanCLEANFILES +=	../common/parser.c
1007c478bd9Sstevel@tonic-gateCLOBBERFILES +=	$(LIBS) $(LIBRARY)
101