From: Leandro Lucarella Date: Mon, 5 Apr 2004 22:56:17 +0000 (+0000) Subject: Pulenteo Makefile para que haga chequeo de ANSI C y clean. X-Git-Tag: svn_import_r684~626 X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/commitdiff_plain/216d7789be2a892d65edc6d90d91ea03131351d5?ds=inline Pulenteo Makefile para que haga chequeo de ANSI C y clean. --- diff --git a/tipo3/Makefile b/tipo3/Makefile index 6d93bd5..4c9a7be 100644 --- a/tipo3/Makefile +++ b/tipo3/Makefile @@ -1,7 +1,9 @@ -CFLAGS=-Wall -g +CFLAGS=-Wall -g -ansi -pedantic -DDEBUG LDFLAGS= all: main -main: main.c param_cte.c emufs.c +main: main.o param_cte.o emufs.o +clean: + @rm -fv *.o main