#
# Makefile
#
# @author Tim Riemenschneider
# 

# Directory of the mof-files
MOF_FILES_DIR = mof

# The files
MOF_FILES = $(shell echo $(MOF_FILES_DIR)/* )

# The output:
OUTPUT = ../../../../Config/spec_act.dat

# Main target
all: $(OUTPUT)

$(OUTPUT): $(MOF_FILES) ../../../../Bin/URC.exe
	../../../../Bin/URC.exe

#
# $Log: Makefile,v $
# Revision 1.2  2003/12/16 18:55:34  loetzsch
# renamed MotionNetCodeGenerator to URC.
#
# Revision 1.1  2003/10/06 14:10:12  cvsadm
# Created GT2004 (M.J.)
#
# Revision 1.1.1.1  2003/07/02 09:40:24  cvsadm
# created new repository for the competitions in Padova from the 
# tamara CVS (Tuesday 2:00 pm)
#
# removed unused solutions
#
# Revision 1.3  2003/04/08 08:17:14  roefer
# Path to MotionNetGenerator changed
#
# Revision 1.2  2003/04/07 13:46:56  timrie
# Added dependency for MotionNetCodeGenerator.exe
#
# Revision 1.1  2003/04/03 15:59:16  timrie
# Added Makefile for SpecialActions
#
#
