X-Git-Url: https://git.llucax.com/z.facultad/75.10/miklolife.git/blobdiff_plain/419f78898bac8d6ff8a228777b29a87ab5697686..16639d2f9baf0eb5efe5a4ae372f7763a03ac3db:/carpeta/disenio_grafico/src/Makefile?ds=inline diff --git a/carpeta/disenio_grafico/src/Makefile b/carpeta/disenio_grafico/src/Makefile index 101a313..889720f 100644 --- a/carpeta/disenio_grafico/src/Makefile +++ b/carpeta/disenio_grafico/src/Makefile @@ -1,10 +1,22 @@ 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 +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= \ + -res:../glade/main.glade \ + -res:../glade/consultar_afiliado.glade \ + -res:../glade/ingresar_solicitud.glade + all: - mcs -out:$(TARGET) $(GLADE) $(LIBS) -target:exe $(SOURCE) + mcs -out:bin/$(TARGET) $(GLADE) $(LIBS) -target:exe $(SOURCE) + +clean: + rm -rf bin/$(TARGET) +