]> git.llucax.com Git - software/sercom-old.git/commitdiff
Se mejoran los Makefile de ejemplo para que de un error más descriptivo si no hay...
authorLeandro Lucarella <llucax@gmail.com>
Thu, 24 Mar 2005 20:31:34 +0000 (20:31 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Thu, 24 Mar 2005 20:31:34 +0000 (20:31 +0000)
doc/examples/Makefile
doc/examples/Makefile-cpp

index a7751fd4b2158548306a4bab4102b0995732aaa9..785045fb2ee2cbd49548e1d171398a15294ec619 100644 (file)
@@ -68,6 +68,11 @@ all: $(target)
 o_files = $(patsubst %.$(extension),%.o,$(fuentes))
 
 $(target): $(o_files)
+       @if [ -z "$(o_files)" ]; \
+       then \
+               echo "No hay archivos de entrada, recuerde que la extensión debe ser '.$(extension)'."; \
+               false; \
+       fi
        $(enlazador) $(LDFLAGS) $(o_files) $(LOADLIBES) $(LDLIBS) -o $(target)
 
 clean:
index 4330eb78be54c0a2b5e1ba957f3fe58fc97b95bb..06927aef109f6f1cf791dd04b63804e4bd2e6f1d 100644 (file)
@@ -68,6 +68,11 @@ all: $(target)
 o_files = $(patsubst %.$(extension),%.o,$(fuentes))
 
 $(target): $(o_files)
+       @if [ -z "$(o_files)" ]; \
+       then \
+               echo "No hay archivos de entrada, recuerde que la extensión debe ser '.$(extension)'."; \
+               false; \
+       fi
        $(enlazador) $(LDFLAGS) $(o_files) $(LOADLIBES) $(LDLIBS) -o $(target)
 
 clean: