2 SOURCE_EXTRA=$(shell ls --color=none *.cs)
3 SOURCE_DOMINIO=$(shell ls --color=none Dominio/*.cs)
4 SOURCE_CONTROLADOR=$(shell ls --color=none Controlador/*.cs)
5 SOURCE=$(SOURCE_DOMINIO) $(SOURCE_CONTROLADOR) $(SOURCE_EXTRA)
6 LIBS=-pkg:glade-sharp-2.0 -pkg:gtk-sharp-2.0
7 GLADE=-res:../glade/main.glade -res:../glade/consultar_afiliado.glade
10 mcs -out:$(TARGET) $(GLADE) $(LIBS) -target:exe $(SOURCE)