Makefile revision 67e3a03ed4a2813074d36330f062ed6e593a4937
327N/A#
327N/A# CDDL HEADER START
327N/A#
327N/A# The contents of this file are subject to the terms of the
327N/A# Common Development and Distribution License (the "License").
327N/A# You may not use this file except in compliance with the License.
327N/A#
327N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
327N/A# or http://www.opensolaris.org/os/licensing.
327N/A# See the License for the specific language governing permissions
327N/A# and limitations under the License.
327N/A#
327N/A# When distributing Covered Code, include this CDDL HEADER in each
327N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
327N/A# If applicable, add the following below this CDDL HEADER, with the
327N/A# fields enclosed by brackets "[]" replaced with your own identifying
327N/A# information: Portions Copyright [yyyy] [name of copyright owner]
327N/A#
327N/A# CDDL HEADER END
327N/A#
327N/A#
327N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
327N/A# Use is subject to license terms.
327N/A#
327N/A#ident "%Z%%M% %I% %E% SMI"
327N/A#
327N/A# eft.so (the eversholt DE)
327N/A#
327N/A
327N/A.KEEP_STATE:
618N/A
327N/AEVERSRCDIR=../../../eversholt/common
327N/A
327N/AMODULE = eft
327N/ACLASS = common
327N/ADMOD = $(MODULE).so
327N/A
327N/AYSRCS=escparse.y
327N/ASRCS = alloc.c check.c config.c eft.c eftread.c esclex.c eval.c evnv.c \
327N/A fme.c iexpr.c io.c ipath.c itree.c lut.c literals.c out.c platform.c \
327N/A ptree.c stable.c stats.c tree.c
327N/ADMOD_SRCS = eft_mdb.c
327N/A
327N/Ainclude ../../Makefile.plugin
327N/A
327N/ACPPFLAGS += -DFMAPLUGIN -I$(EVERSRCDIR) -I.
327N/A
327N/A$(PROG) := LDFLAGS += -R/usr/lib/fm
327N/A$(PROG) := LDLIBS += -L$(ROOTLIB)/fm -ltopo
327N/A
327N/ACLEANFILES += y.tab.h y.tab.c
327N/A
327N/Aesclex.o: escparse.o
327N/A
327N/A%.o: $(EVERSRCDIR)/%.c
327N/A $(COMPILE.c) $<
327N/A $(CTFCONVERT_O)
327N/A
327N/A%.ln: $(EVERSRCDIR)/%.c
327N/A $(LINT.c) -c $<
327N/A
327N/Aescparse.o: $(EVERSRCDIR)/escparse.y
327N/A $(YACC) -dt $(EVERSRCDIR)/escparse.y
327N/A $(COMPILE.c) -DYYDEBUG -c -o $@ y.tab.c
327N/A $(CTFCONVERT_O)
327N/A