From 4533df5a2b674ec9d2a005498d118079d0c1b4b7 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Sun, 24 Aug 2003 06:19:28 +0000 Subject: [PATCH] Se agrega un Makefile. --- Makefile | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 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 -- 2.43.0