Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
[simgrid.git] / contrib / psg / Makefile
1 LIB_JARS= lib.jar
2
3 all: compile doc
4
5 compile:
6         mkdir -p classes
7         javac -sourcepath src -classpath $(LIB_JARS):../../simgrid.jar -d classes `find -L -name "*.java"`
8
9 doc:
10         mkdir -p doc
11         javadoc -sourcepath src -classpath $(LIB_JARS):../../simgrid.jar -d doc psgsim
12
13 test:
14         ./test.sh 
15
16 clean: 
17         rm -rf classes doc outputs
18         
19 # Help Target
20 help:
21         @echo "The following are a valid targets for this Makefile:"
22         @echo "................ all (the default if no target is provided)"
23         @echo "................ compile"
24         @echo "................ doc"
25         @echo "................ test"
26         @echo "................ clean"
27