From: Jérôme Benoit Date: Wed, 7 Feb 2018 22:02:57 +0000 (+0100) Subject: Makefiles cleanup. X-Git-Url: https://git.piment-noir.org/?p=TP_POO.git;a=commitdiff_plain;h=27869e5bfad44707f302ca8dd7642829c45346ec;hp=bc48a28596ee8602a6872379df217cc83a306470 Makefiles cleanup. Signed-off-by: Jérôme Benoit --- 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);