[Added targets for building and uploading code and docs. bringert@cs.chalmers.se**20050516085924] { hunk ./Makefile 49 +DIST_NAME=dialogutil-`date '+%Y%m%d'` +DIST_FILE=$(DIST_NAME).tar.gz + hunk ./Makefile 54 -default all: classes +default all: jar + +jar: classes + cd build; $(JAR) -cf ../dialogutil.jar * hunk ./Makefile 72 + +dist: + darcs dist --dist-name=$(DIST_NAME) + +upload: jar dist + scp dialogutil.jar cs:.public_html/gf/downloads/dialogutil/jar/ + scp $(DIST_FILE) cs:.public_html/gf/downloads/dialogutil/ + +upload-doc: javadoc + scp doc/dialogutil.html cs:.public_html/gf/ + scp -pr doc/javadoc/* cs:.public_html/gf/javadoc/dialogutil hunk ./doc/dialogutil.html 34 -

Source code.

+

The JAR-file with the +classes is all you need to compile and run programs using +dialogutil.

+ +

Get the source code if +you want to modify the classes.

}