From: Leandro Lucarella Date: Sun, 24 Aug 2003 06:19:28 +0000 (+0000) Subject: Se agrega un Makefile. X-Git-Tag: svn_import~16 X-Git-Url: https://git.llucax.com/z.facultad/75.42/euler.git/commitdiff_plain/4533df5a2b674ec9d2a005498d118079d0c1b4b7 Se agrega un Makefile. --- diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6a18539 --- /dev/null +++ b/Makefile @@ -0,0 +1,29 @@ +# +# Taller de Programación (75.42). +# +# Trabajo Práctico Número 1: +# Graficador de la solución de una ecuación diferencial por el método +# de Euler (explícito). +# +# Copyleft 2003 - Leandro Lucarella +# Puede copiar, modificar y distribuir este programa bajo los términos de +# la licencia GPL (http://www.gnu.org/). +# +# Creado: sáb ago 23 16:51:45 ART 2003 +# +# $Id$ +# + +# Opciones para el compilador. +CFLAGS=-ansi -pedantic -Wall -g3 + +# Programa a compilar. +TARGETS=enunciado + +# Regla por defecto. +all: $(TARGETS) + +# Regla para borrar. +clean: + @echo "Limpiando..." + @rm -fv $(TARGETS) *.o core