#
# 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/specialActions.dat

# Main target
all: $(OUTPUT)

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