2 SOURCE_EXTRA=$(shell ls --color=none *.cs)
4 SOURCE_DOMINIO=$(shell ls --color=none Dominio/*.cs)
5 SOURCE_CONTROLADOR=$(shell ls --color=none Controlador/*.cs)
6 SOURCE_VISTAS=$(shell ls --color=none Vistas/*.cs)
8 SOURCE=$(SOURCE_DOMINIO) $(SOURCE_CONTROLADOR) $(SOURCE_EXTRA) $(SOURCE_VISTAS)
10 LIBS=-pkg:glade-sharp-2.0 -pkg:gtk-sharp-2.0 -r:./bin/db4o.dll
12 -res:../glade/main.glade \
13 -res:../glade/consultar_afiliado.glade \
14 -res:../glade/ingresar_solicitud.glade
18 mcs -out:bin/$(TARGET) $(GLADE) $(LIBS) -target:exe $(SOURCE)