Created a makefile for building javadoc documentation.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@41 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2001-02-13 05:54:29 +00:00
parent 826a3f1749
commit 500a88880b
2 changed files with 20 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
*.html
package-list
stylesheet.css
com
+16
View File
@@ -0,0 +1,16 @@
#
# $Id: Makefile,v 1.1 2001/02/13 05:54:29 mdb Exp $
#
# A Makefile for generating docs for the samskivert stuff
ROOT = ../src/java
PKGDIR = $(ROOT)/com/samskivert
PACKAGES = $(shell find $(PKGDIR) -name '*.java' | sed 's:/[^/]*$$::g' | sort -u | sed 's:^$(ROOT)/::g' | sed 's:/:.:g' | grep -v '^build$$')
DOCDIR = .
all: docs
include $(ROOT)/build/Makefile.java