X-Git-Url: https://git.llucax.com/software/sercom-old.git/blobdiff_plain/35176aa3e23a4660af9f139262213e7f47af0794..5fbd64ffbcf2259aed83351dcf00ee47a75ff931:/doc/examples/Makefile diff --git a/doc/examples/Makefile b/doc/examples/Makefile index 9e2bb80..13ac517 100644 --- a/doc/examples/Makefile +++ b/doc/examples/Makefile @@ -28,7 +28,7 @@ extension = c ########################### # Opciones para el compilador C. -CFLAGS = -Werror -Wall -ggdb -ansi -pedantic -DDEBUG +CFLAGS = -Wall -ggdb -ansi -DDEBUG # Opciones para el compilador C++. CXXFLAGS = $(CFLAGS) -fno-inline @@ -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 >&2 $(enlazador) $(LDFLAGS) $(o_files) $(LOADLIBES) $(LDLIBS) -o $(target) clean: