SOURCES=lliurex-easy-sites/*.cs \ lliurex-easy-sites/gtk-gui/*.cs CSC = gmcs CSC_FLAGS = -r:Mono.Posix.dll -pkg:gtk-sharp-2.0 -r:libmono-lliurex-utils OUT = lliurex-easy-sites.exe clean: rm -rf bin release: $(SOURCES) mkdir -p bin/Release/ $(CSC) $(CSC_FLAGS) $(SOURCES) -out:bin/Release/$(OUT) debug: $(SOURCES) mkdir -p bin/Debug/ $(CSC) $(CSC_FLAGS) $(SOURCES) -out:bin/Debug/$(OUT) -debug