From 27869e5bfad44707f302ca8dd7642829c45346ec Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Wed, 7 Feb 2018 23:02:57 +0100 Subject: [PATCH] Makefiles cleanup. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- Entiers/Makefile | 3 --- Piles/Makefile | 3 --- Piles/Pile.java | 2 +- 3 files changed, 1 insertion(+), 7 deletions(-) diff --git a/Entiers/Makefile b/Entiers/Makefile index 532f851..5e575b3 100644 --- a/Entiers/Makefile +++ b/Entiers/Makefile @@ -2,13 +2,10 @@ # define a variable for compiler flags (JFLAGS) # define a variable for the compiler (JC) # define a variable for the Java Virtual Machine (JVM) -# define a variable for a parameter. When you run make, you could use: -# make run FILE="Algo.csv" para sobre escribir el valor de FILE. JFLAGS = -g JC = javac JVM = java -FILE = # # Clear any default targets for building .class files from .java files; we diff --git a/Piles/Makefile b/Piles/Makefile index 4e114c2..e09b2a3 100644 --- a/Piles/Makefile +++ b/Piles/Makefile @@ -2,13 +2,10 @@ # define a variable for compiler flags (JFLAGS) # define a variable for the compiler (JC) # define a variable for the Java Virtual Machine (JVM) -# define a variable for a parameter. When you run make, you could use: -# make run FILE="Algo.csv" para sobre escribir el valor de FILE. JFLAGS = -g JC = javac JVM = java -FILE = # # Clear any default targets for building .class files from .java files; we diff --git a/Piles/Pile.java b/Piles/Pile.java index 4e240d3..915a63c 100644 --- a/Piles/Pile.java +++ b/Piles/Pile.java @@ -102,7 +102,7 @@ class Pile { /** * The main() function - * @param String[] args main() function arguments + * @param String[] args main() function arguments array */ public static void main(String[] args) { Pile stack = new Pile(5); -- 2.34.1