TARGET=osocial.exe SOURCE_EXTRA=$(shell ls --color=none *.cs) SOURCE_DOMINIO=$(shell ls --color=none Dominio/*.cs) SOURCE_CONTROLADOR=$(shell ls --color=none Controlador/*.cs) SOURCE_VISTAS=$(shell ls --color=none Vistas/*.cs) SOURCE=$(SOURCE_DOMINIO) $(SOURCE_CONTROLADOR) $(SOURCE_EXTRA) $(SOURCE_VISTAS) LIBS=-pkg:glade-sharp-2.0 -pkg:gtk-sharp-2.0 -r:./bin/db4o.dll GLADE_FILES=$(shell ls --color=none ../glade/*.glade) GLADE=$(foreach file,$(GLADE_FILES), $(addprefix -resource:,$(file)),$(notdir $(file))) all: mcs -out:bin/$(TARGET) $(GLADE) $(LIBS) -target:exe $(SOURCE) clean: rm -rf bin/$(TARGET)