Projet L3

Sign in or create your account | Project List | Help

Projet L3 Commit Details

Date:2010-01-12 19:59:34 (7 months 27 days ago)
Author:Antoine Millet
Commit:4d4ec62e42f69088e4a250f4ab139ecb55b7c2c3
Message:Ajout de quoi faire une java jar avec le makefile.

Il faut utiliser make jar pour créer la jar (dans la racine du projet)
Files: misc/MANIFEST.MF (1 diff)
src/Makefile (1 diff)

Change Details

misc/MANIFEST.MF
1Manifest-Version: 1.0
2Class-Path: .
3Main-Class: controleur.Programme
src/Makefile
33all: source javadoc
44
55source:
6    javac -d ../build/ ./org/json/*.java
67    javac -classpath ../build/ -d ../build/ ./*/*.java
78
9jar: source
10    mkdir -p ../build/META-INF/
11    cp ../misc/MANIFEST.MF ../build/META-INF/
12    rm -f ../pl3_amillet_arakotoson.jar
13    cd ../build/ && zip -r ../pl3_amillet_arakotoson.jar *
14
15
816javadoc:
917    javadoc -private -encoding utf8 -docencoding latin1 -d ../docs/ */*.java

Archive Download the corresponding diff file

Branches:
master