File:  [Public] / Amaya / amaya / Makefile.math
Revision 1.2: download - view: text, annotated - select for diffs
Tue Jul 1 09:13:42 1997 UTC (26 years, 11 months ago) by cvs
Branches: MAIN
CVS tags: HEAD
Big upgrade to Kaffe-0.9.1 (java 1.1.1), modified a lot of Makefile(s), Daniel.

#
# Makefile.math
# Autoconf Fragment when using Math
# Daniel Veillard and Irene Vatton 1997
#

AMAYA_MATH_OPTIONS=-DMATHML

AMAYA_MATH_OBJ= \
	MathMLAPP.o \
	Mathedit.o

AMAYA_MATH_SRC= 

AMAYA_MATH_LIBS= 

AMAYA_MATH_INCLUDES= 

AMAYA_MATH_SCHEMAS=$(AMAYA)/MathML.STR $(AMAYA)/MathMLP.PRS \
                  $(AMAYA)/MathMLT.TRA $(AMAYA)/MathML.h

#
# Structure schema compilation.
#
$(AMAYA)/MathML.STR : $(AMAYA)/MathML.S ../bin/str
	STR=`pwd`/../bin/str;PRS=`pwd`/../bin/prs;TRA=`pwd`/../bin/tra;\
	cd $(AMAYA); THOTDIR=`pwd`/.. ;export THOTDIR; \
	$$STR $(ALL_AMAYA_OPTIONS) MathML ; \
	$$PRS $(ALL_AMAYA_OPTIONS) MathMLP ; \
	$$TRA $(ALL_AMAYA_OPTIONS) MathMLT

#
# Presentation schemas compilation
#
$(AMAYA)/MathMLP.PRS : $(AMAYA)/MathMLP.P ../bin/prs
	PRS=`pwd`/../bin/prs;\
	cd $(AMAYA); THOTDIR=`pwd`/.. ;export THOTDIR; \
	$$PRS $(ALL_AMAYA_OPTIONS) MathMLP

#
# Traduction schemas compilation
#
$(AMAYA)/MathMLT.TRA : $(AMAYA)/MathMLT.T ../bin/tra
	TRA=`pwd`/../bin/tra;\
	cd $(AMAYA); THOTDIR=`pwd`/.. ;export THOTDIR; \
	$$TRA $(ALL_AMAYA_OPTIONS) MathMLT

#
# Interface schemas compilation
#
$(AMAYA)/MathML.h $(AMAYA)/MathMLAPP.c : $(AMAYA)/MathML.STR $(AMAYA)/MathML.A
	APP=`pwd`/../bin/app;\
	cd $(AMAYA); THOTDIR=`pwd`/.. ;export THOTDIR; \
	$$APP $(ALL_AMAYA_OPTIONS) MathML

Webmaster