Annotation of Amaya/amaya/Makefile.math, revision 1.5

1.1       cvs         1: #
                      2: # Makefile.math
                      3: # Autoconf Fragment when using Math
                      4: # Daniel Veillard and Irene Vatton 1997
                      5: #
                      6: 
                      7: AMAYA_MATH_OPTIONS=-DMATHML
                      8: 
                      9: AMAYA_MATH_OBJ= \
                     10:        MathMLAPP.o \
                     11:        Mathedit.o
                     12: 
1.3       cvs        13: AMAYA_MATH_SRC= \
1.4       cvs        14:         MathML.h \
                     15:        MathMLAPP.c 
1.2       cvs        16: 
1.1       cvs        17: AMAYA_MATH_LIBS= 
                     18: 
1.5     ! cvs        19: AMAYA_MATH_EXTRA_LIBS= 
        !            20: 
1.1       cvs        21: AMAYA_MATH_INCLUDES= 
                     22: 
                     23: AMAYA_MATH_SCHEMAS=$(AMAYA)/MathML.STR $(AMAYA)/MathMLP.PRS \
                     24:                   $(AMAYA)/MathMLT.TRA $(AMAYA)/MathML.h
                     25: 
                     26: #
                     27: # Structure schema compilation.
                     28: #
                     29: $(AMAYA)/MathML.STR : $(AMAYA)/MathML.S ../bin/str
                     30:        STR=`pwd`/../bin/str;PRS=`pwd`/../bin/prs;TRA=`pwd`/../bin/tra;\
                     31:        cd $(AMAYA); THOTDIR=`pwd`/.. ;export THOTDIR; \
                     32:        $$STR $(ALL_AMAYA_OPTIONS) MathML ; \
                     33:        $$PRS $(ALL_AMAYA_OPTIONS) MathMLP ; \
                     34:        $$TRA $(ALL_AMAYA_OPTIONS) MathMLT
                     35: 
                     36: #
                     37: # Presentation schemas compilation
                     38: #
                     39: $(AMAYA)/MathMLP.PRS : $(AMAYA)/MathMLP.P ../bin/prs
                     40:        PRS=`pwd`/../bin/prs;\
                     41:        cd $(AMAYA); THOTDIR=`pwd`/.. ;export THOTDIR; \
                     42:        $$PRS $(ALL_AMAYA_OPTIONS) MathMLP
                     43: 
                     44: #
                     45: # Traduction schemas compilation
                     46: #
                     47: $(AMAYA)/MathMLT.TRA : $(AMAYA)/MathMLT.T ../bin/tra
                     48:        TRA=`pwd`/../bin/tra;\
                     49:        cd $(AMAYA); THOTDIR=`pwd`/.. ;export THOTDIR; \
                     50:        $$TRA $(ALL_AMAYA_OPTIONS) MathMLT
                     51: 
                     52: #
                     53: # Interface schemas compilation
                     54: #
1.4       cvs        55: MathML.h MathMLAPP.c : $(AMAYA)/MathML.STR $(AMAYA)/MathML.A
                     56:        (if test "$(AMAYA)" != "" -a "$(AMAYA)" != "." ; then \
                     57:            $(CP) $(AMAYA)/MathML.A .  ; \
                     58:            $(CP) $(AMAYA)/MathML.STR .  ; \
                     59:        fi)
                     60:        THOTDIR=$(THOTDIR) ; export THOTDIR ; \
                     61:        ../bin/app $(ALL_AMAYA_OPTIONS) MathML.A
1.3       cvs        62: 

Webmaster