From: Leandro Lucarella Date: Sat, 27 Mar 2004 20:10:00 +0000 (+0000) Subject: Se mejora el Makefile y se evitan los warnings. X-Git-Tag: svn_import_r684~679 X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/commitdiff_plain/a1074eb6c97668b840d388a03fcec741bcaaa368?ds=inline Se mejora el Makefile y se evitan los warnings. --- diff --git a/ejemplos/Makefile b/ejemplos/Makefile index f2f9768..83008e3 100644 --- a/ejemplos/Makefile +++ b/ejemplos/Makefile @@ -1,6 +1,9 @@ +CFLAGS=-Wall +LDFLAGS=-lncurses -all: - gcc -Wall -o ej1 ej_1.c -lncurses - gcc -Wall -o ej2 ej_2.c -lncurses +all: ej_1 ej_2 + +# gcc -Wall -o ej1 ej_1.c -lncurses +# gcc -Wall -o ej2 ej_2.c -lncurses diff --git a/ejemplos/ej_1.c b/ejemplos/ej_1.c index 51d5d0b..063ca07 100644 --- a/ejemplos/ej_1.c +++ b/ejemplos/ej_1.c @@ -1,4 +1,5 @@ +#include #include #include #include diff --git a/ejemplos/ej_2.c b/ejemplos/ej_2.c index 01a1fb1..c54693b 100644 --- a/ejemplos/ej_2.c +++ b/ejemplos/ej_2.c @@ -1,4 +1,5 @@ +#include #include #include #include