#
# Makefile
#
# Generates the documentation, intermediate code and debugging symbols for Aibo Team Humboldt 2004
#

# An XSLT processor that can process XInclude statements (with necessary parameters)
XSLT = xsltproc.exe --xinclude 

# Path of the dot tool 
DOT = ../../../../Util/dot-1.9.0/dot.exe

# Validates an XML file against the schemas referenced in the source file taking the input from stdin
SCHEMA_VALIDATOR = ../../../../Util/Xerces/StdInParse.exe -v=always -n -f -s

# Directory of the xabsl-2.0 Schemas and XSLT Stylesheets
XABSL_DIR = ../../../Tools/Xabsl2/xabsl-2.2

# Directory that contains the DotML 1.1 Schemas and XSLT stylesheets
DOTML_DIR = ../../../Tools/dotml-1.1

# Directory where the intermediate code and the debug symbols are stored
XABSL_OUTPUT_DIR =../../../../Config/Xabsl2/HeadCtrl

# The directory for the documentation output
DOC_OUTPUT_DIR =../../../../Doc/Reference/GT2004HeadControl

# This directory relative to the Src/Tools/Xabsl2/xabsl-2.2 directory
INSTANCE_DIR = ../../../../Src/Modules/HeadControl/GT2004HeadControl

# The debug symbols 
DEBUG_SYMBOLS    = $(XABSL_OUTPUT_DIR)/gt04-ds.dat

# The intermediate code 
INTERMEDIATE_CODE = $(XABSL_OUTPUT_DIR)/gt04-ic.dat

# Input XML files
SYMBOL_FILES         = symbols.xml
BASIC_BEHAVIOR_FILES = basic-behaviors.xml 
OPTION_FILES         = Options/*.xml

include $(XABSL_DIR)/Xabsl2Makefile


#
# Change Log:
#
# $Log: Makefile,v $
# Revision 1.2  2004/06/15 12:41:21  loetzsch
# changed XABSL version from 2.1 to 2.2 on the occasion of a new XABSL release
#
# Revision 1.1.1.1  2004/05/22 17:19:25  cvsadm
# created new repository GT2004_WM
#
# Revision 1.1  2004/05/14 11:37:08  loetzsch
# support for multiple xabsl2engines in different modules
# preliminary GT2004HeadControl (does not work at all)
#
#
