ASSEMBLY_NAME=mindtouch.filemigrator
ASSEMBLY=$(ASSEMBLY_NAME).exe

TARGET=$(ASSEMBLY)

sources = 							\
		Program.cs					\
		Properties/AssemblyInfo.cs

references = 																\
		-r:System.Data														\
		-r:/opt/deki/bin/mindtouch.deki.dll					\
		-r:/opt/deki/redist/MySql.Data.dll					\
		-r:/opt/deki/redist/mindtouch.dream.dll				\

$(TARGET): $(sources) 
	gmcs  /out:bin/$(TARGET) /target:exe $(references) $(sources)

all: $(TARGET) 
