]> git.llucax.com Git - z.facultad/75.10/miklolife.git/blobdiff - demo/src/Makefile
(no commit message)
[z.facultad/75.10/miklolife.git] / demo / src / Makefile
index b5eabde7a9602a761cdfc8f872fe8c7f31e8c51a..5bc7225023dd461f61539785b87dda20f52d9d6d 100644 (file)
@@ -4,15 +4,15 @@ 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_DOMINIO=$(shell ls --color=none Dominio/*.cs)
 SOURCE_CONTROLADOR=$(shell ls --color=none Controlador/*.cs)
 SOURCE_VISTAS=$(shell ls --color=none Vistas/*.cs)
+SOURCE_TEST=$(shell ls --color=none Tests/*.cs)
+SOURCE_REPORTES=$(shell ls --color=none Reportes/*.cs)
+SOURCE_EXCEPCIONES=$(shell ls --color=none Excepciones/*.cs)
 
 
-SOURCE=$(SOURCE_DOMINIO) $(SOURCE_CONTROLADOR) $(SOURCE_EXTRA) $(SOURCE_VISTAS)
+SOURCE=$(SOURCE_DOMINIO) $(SOURCE_CONTROLADOR) $(SOURCE_EXTRA) $(SOURCE_VISTAS) $(SOURCE_TEST) $(SOURCE_REPORTES) $(SOURCE_EXCEPCIONES)
 
 LIBS=-pkg:glade-sharp-2.0 -pkg:gtk-sharp-2.0 -r:./bin/db4o.dll
 
 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 \
-       -res:../glade/emitir_hoja_de_ruta.glade
+GLADE_FILES=$(shell ls --color=none ../glade/*.glade)
+GLADE=$(foreach file,$(GLADE_FILES), $(addprefix -resource:,$(file)),$(notdir $(file)))
 
 
 all:
 
 
 all:
@@ -21,3 +21,8 @@ all:
 clean:
        rm -rf bin/$(TARGET)
 
 clean:
        rm -rf bin/$(TARGET)
 
+install:
+       cp osocial.exe.config bin/
+       cp -r Recursos/ bin/
+       rm -rf bin/Recursos/.svn
+