1# 2# CDDL HEADER START 3# 4# The contents of this file are subject to the terms of the 5# Common Development and Distribution License, Version 1.0 only 6# (the "License"). You may not use this file except in compliance 7# with the License. 8# 9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10# or http://www.opensolaris.org/os/licensing. 11# See the License for the specific language governing permissions 12# and limitations under the License. 13# 14# When distributing Covered Code, include this CDDL HEADER in each 15# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16# If applicable, add the following below this CDDL HEADER, with the 17# fields enclosed by brackets "[]" replaced with your own identifying 18# information: Portions Copyright [yyyy] [name of copyright owner] 19# 20# CDDL HEADER END 21# 22# 23# Copyright 2006 Sun Microsystems, Inc. All rights reserved. 24# Use is subject to license terms. 25# 26#ident "%Z%%M% %I% %E% SMI" 27# 28# eft.so (the eversholt DE) 29# 30 31.KEEP_STATE: 32 33EVERSRCDIR=../../../eversholt/common 34 35MODULE = eft 36CLASS = common 37 38YSRCS=escparse.y 39SRCS = alloc.c check.c config.c eft.c eftread.c esclex.c eval.c evnv.c \ 40 fme.c iexpr.c io.c ipath.c itree.c lut.c literals.c out.c platform.c \ 41 ptree.c stable.c stats.c tree.c 42 43include ../../Makefile.plugin 44 45CPPFLAGS += -DFMAPLUGIN -I$(EVERSRCDIR) -I. 46LDFLAGS += -R/usr/lib/fm 47LDLIBS += -L$(ROOTLIB)/fm -ltopo 48 49CLEANFILES += y.tab.h y.tab.c 50 51esclex.o: escparse.o 52 53%.o: $(EVERSRCDIR)/%.c 54 $(COMPILE.c) $< 55 $(CTFCONVERT_O) 56 57%.ln: $(EVERSRCDIR)/%.c 58 $(LINT.c) -c $< 59 60escparse.o: $(EVERSRCDIR)/escparse.y 61 $(YACC) -dt $(EVERSRCDIR)/escparse.y 62 $(COMPILE.c) -DYYDEBUG -c -o $@ y.tab.c 63 $(CTFCONVERT_O) 64