17c478bd9Sstevel@tonic-gate# 224da5b34Srie# Copyright 2007 Sun Microsystems, Inc. All rights reserved. 324da5b34Srie# Use is subject to license terms. 47c478bd9Sstevel@tonic-gate# 55661bb76SJohn Levon# Copyright (c) 2018, Joyent, Inc. 65661bb76SJohn Levon# 77c478bd9Sstevel@tonic-gate 87c478bd9Sstevel@tonic-gateinclude ../../Makefile.cmd 97c478bd9Sstevel@tonic-gate 107c478bd9Sstevel@tonic-gatePROG = eqn 117c478bd9Sstevel@tonic-gate 127c478bd9Sstevel@tonic-gateCSRCS = diacrit.c eqnbox.c font.c fromto.c funny.c \ 137c478bd9Sstevel@tonic-gate glob.c integral.c io.c lex.c lookup.c \ 147c478bd9Sstevel@tonic-gate mark.c matrix.c move.c over.c paren.c \ 157c478bd9Sstevel@tonic-gate pile.c shift.c size.c sqrt.c text.c 167c478bd9Sstevel@tonic-gate 177c478bd9Sstevel@tonic-gateSRCS = $(CSRCS:%=../%) 187c478bd9Sstevel@tonic-gate 197c478bd9Sstevel@tonic-gateYACCSRC = e.y 207c478bd9Sstevel@tonic-gate 217c478bd9Sstevel@tonic-gateCOBJS = $(CSRCS:%.c=%.o) 227c478bd9Sstevel@tonic-gateOBJS = $(YACCSRC:%.y=%.o) $(COBJS) 237c478bd9Sstevel@tonic-gate 247c478bd9Sstevel@tonic-gate# 257c478bd9Sstevel@tonic-gate# for message catalog 267c478bd9Sstevel@tonic-gate# 277c478bd9Sstevel@tonic-gatePOFILE= eqn.d.po 287c478bd9Sstevel@tonic-gatePOFILES= $(SRCS:%.c=%.po) e.po 297c478bd9Sstevel@tonic-gate 307c478bd9Sstevel@tonic-gateCLEANFILES = y.tab.c y.tab.h $(YACCSRC:%.y=%.c) $(YACCSRC:%.y=%.def) 317c478bd9Sstevel@tonic-gate 327c478bd9Sstevel@tonic-gateYFLAGS = -d 337c478bd9Sstevel@tonic-gateCPPFLAGS = -I. -I.. $(CPPFLAGS.master) 34*85f4cb87SRichard LoweLDFLAGS += $(MAPFILE.NGB:%=-Wl,-M%) 357c478bd9Sstevel@tonic-gate 367014882cSRichard LoweCERRWARN += -_gcc=-Wno-implicit-function-declaration 377014882cSRichard LoweCERRWARN += -_gcc=-Wno-unused-label 38d3b5f563SJohn LevonCERRWARN += $(CNOWARN_UNINIT) 397014882cSRichard Lowe 405661bb76SJohn Levon# not linted 415661bb76SJohn LevonSMATCH=off 425661bb76SJohn Levon 437c478bd9Sstevel@tonic-gate.KEEP_STATE: 447c478bd9Sstevel@tonic-gate 457c478bd9Sstevel@tonic-gateall : $(PROG) 467c478bd9Sstevel@tonic-gate 477c478bd9Sstevel@tonic-gatecatalog: $(POFILE) 487c478bd9Sstevel@tonic-gate 497c478bd9Sstevel@tonic-gate$(POFILE): e.def $(POFILES) 507c478bd9Sstevel@tonic-gate $(RM) $@ 517c478bd9Sstevel@tonic-gate cat $(POFILES) > $@ 527c478bd9Sstevel@tonic-gate 5324da5b34Srie$(PROG) : $(OBJS) $(MAPFILE.NGB) 547c478bd9Sstevel@tonic-gate $(LINK.c) -o $@ $(OBJS) $(LDFLAGS) $(LDLIBS) 557c478bd9Sstevel@tonic-gate $(POST_PROCESS) 567c478bd9Sstevel@tonic-gate 577c478bd9Sstevel@tonic-gate$(YACCSRC:%.y=%.c) + $(YACCSRC:%.y=%.def) : ../$(YACCSRC) 587c478bd9Sstevel@tonic-gate $(YACC.y) ../$(YACCSRC) 597c478bd9Sstevel@tonic-gate $(MV) y.tab.c $(YACCSRC:%.y=%.c) 607c478bd9Sstevel@tonic-gate $(MV) y.tab.h $(YACCSRC:%.y=%.def) 617c478bd9Sstevel@tonic-gate 627c478bd9Sstevel@tonic-gate$(COBJS) : $$(@:%.o=../%.c) 637c478bd9Sstevel@tonic-gate $(COMPILE.c) ../$(@:%.o=%.c) 647c478bd9Sstevel@tonic-gate 657c478bd9Sstevel@tonic-gateinstall : all $(ROOTPROG) 667c478bd9Sstevel@tonic-gate 677c478bd9Sstevel@tonic-gateclean: 687c478bd9Sstevel@tonic-gate $(RM) $(OBJS) $(CLEANFILES) 697c478bd9Sstevel@tonic-gate 707c478bd9Sstevel@tonic-gateinclude ../../Makefile.targ 71