Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Adding javadoc.
[mapping.git] / Makefile
1 #
2 # Makefile for Mapping library
3 # Author : Sébastien Miquée <sebastien.miquee@univ-fcomte.fr>
4 #
5
6 JAVAC=javac
7 BIN=bin
8 LIB=lib
9 SRC=src
10 PACK=and
11 PACKAGE=$(PACK)/Mapping
12 JAR=Mapping.jar
13
14
15 compile:clean
16         @echo
17         @echo "Compilation of Mapping library ..."
18         @echo
19         mkdir $(BIN)
20         $(JAVAC) -cp .:./$(LIB)/* -d ./$(BIN) ./$(SRC)/$(PACKAGE)/*.java
21
22
23 jar:compile
24         @echo
25         @echo "Creation of Mapping jar ..."
26         @echo
27         jar -cvfm $(JAR) Manifest -C $(BIN) $(PACK)/ $(LIB)
28
29 clean:
30         @echo
31         @echo "Cleaning project ..."
32         @echo
33         rm -rf bin $(JAR)
34
35
36 #
37 ##
38 #