]> git.llucax.com Git - z.facultad/75.42/euler.git/commitdiff
Se agrega un Makefile.
authorLeandro Lucarella <llucax@gmail.com>
Sun, 24 Aug 2003 06:19:28 +0000 (06:19 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Sun, 24 Aug 2003 06:19:28 +0000 (06:19 +0000)
Makefile [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
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 <llucare@fi.uba.ar>
+# 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