Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Many modifications in order to make a more efficient library for GNode creation
[mapping.git] / Makefile
index 80e8513..3714bb6 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -5,26 +5,27 @@
 
 JAVAC=javac
 BIN=bin
-LIB=lib
+#LIB=lib
 SRC=src
 PACK=and
 PACKAGE=$(PACK)/Mapping
 JAR=Mapping.jar
-
+EXT=com/
+JAVADOC=javadoc
 
 compile:clean
        @echo
        @echo "Compilation of Mapping library ..."
        @echo
        mkdir $(BIN)
-       $(JAVAC) -cp .:./$(LIB)/* -d ./$(BIN) ./$(SRC)/$(PACKAGE)/*.java
+       $(JAVAC) -d ./$(BIN) ./$(SRC)/$(PACKAGE)/*.java
 
 
 jar:compile
        @echo
        @echo "Creation of Mapping jar ..."
        @echo
-       jar -cvfm $(JAR) Manifest -C $(BIN) $(PACK)/ $(LIB)
+       jar -cvfm $(JAR) Manifest $(EXT) $(JAVADOC) -C $(BIN) $(PACK)/ #$(LIB)  
 
 clean:
        @echo