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=$(SOURCE_DOMINIO) $(SOURCE_CONTROLADOR) $(SOURCE_EXTRA) LIBS=-pkg:glade-sharp-2.0 -pkg:gtk-sharp-2.0 GLADE=-res:../glade/main.glade -res:../glade/consultar_afiliado.glade all: mcs -out:$(TARGET) $(GLADE) $(LIBS) -target:exe $(SOURCE)