Makefiles cleanup.
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Wed, 7 Feb 2018 22:02:57 +0000 (23:02 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Wed, 7 Feb 2018 22:02:57 +0000 (23:02 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
Entiers/Makefile
Piles/Makefile
Piles/Pile.java

index 532f85100e0e62dba82ab99ccbe9dee2c4a844bf..5e575b3b38dd70fa3ae7e62a7e3f3feda3d19cbd 100644 (file)
@@ -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
index 4e114c25bb098e2df11f828d147b94200d696cf1..e09b2a36a9c722dbe6597980e4fd97ea7d2cc20c 100644 (file)
@@ -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
index 4e240d3902ad60a7015d956c9b886264351d66b0..915a63c168bcf248dc2023424c34064f7042031d 100644 (file)
@@ -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);