Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
93470aec1ca622de1c486512db4c83d0aa17564e
[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 doc:
9         mkdir -p doc
10         javadoc -sourcepath src -classpath $(LIB_JARS):../../simgrid.jar -d doc psgsim
11 test:
12         ./test.sh 
13 clean: 
14         rm -rf classes doc outputs
15 help:
16         @echo "The following are a valid targets for this Makefile:"
17         @echo "................ all (the default if no target is provided)"
18         @echo "................ compile"
19         @echo "................ doc"
20         @echo "................ test"
21         @echo "................ clean"
22