Initial revision

This commit is contained in:
Diomidis Spinellis 2002-09-20 08:08:59 +00:00
parent d26c248728
commit be1410d173
1 changed files with 34 additions and 0 deletions

34
Makefile Normal file
View File

@ -0,0 +1,34 @@
# This works for me; your mileage may vary - dds
#
# $Id$
#
.SUFFIXES:.class .java .dot .ps .gif
.java.dot:
javadoc -docletpath UmlGraph.jar -doclet UmlGraph -private $<
mv graph.dot $@
.java.class:
javac -classpath /jdk/lib/tools.jar $<
.dot.ps:
dot -Tps -o$@ $<
.dot.gif:
dot -Tgif -o$@ $<
#all: UmlGraph.class vis.gif schema.gif general.gif catalina.gif advrel.gif assoc.gif classadd.gif
#all: UmlGraph.class vis.ps schema.ps general.ps catalina.ps advrel.ps assoc.ps classadd.ps
all: UmlGraph.jar vis.dot schema.dot general.dot catalina.dot advrel.dot assoc.dot classadd.dot
UmlGraph.jar: UmlGraph.class
jar cvf UmlGraph.jar ClassGraph.class ClassInfo.class Options.class \
StringFuns.class UmlGraph.class
jar i UmlGraph.jar
UmlGraph.class: UmlGraph.java
web: UmlGraph.jar
cmd /c del /f/q \dds\pubs\web\home\sw\umlgraph
cp *.java *.jar *.gif *.dot index.html makefile /dds/pubs/web/home/sw/umlgraph