From 500a88880bf1f133687f92c59198bea7784de350 Mon Sep 17 00:00:00 2001 From: mdb Date: Tue, 13 Feb 2001 05:54:29 +0000 Subject: [PATCH] Created a makefile for building javadoc documentation. git-svn-id: https://samskivert.googlecode.com/svn/trunk@41 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- projects/samskivert/docs/.cvsignore | 4 ++++ projects/samskivert/docs/Makefile | 16 ++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 projects/samskivert/docs/.cvsignore create mode 100644 projects/samskivert/docs/Makefile diff --git a/projects/samskivert/docs/.cvsignore b/projects/samskivert/docs/.cvsignore new file mode 100644 index 00000000..749841ae --- /dev/null +++ b/projects/samskivert/docs/.cvsignore @@ -0,0 +1,4 @@ +*.html +package-list +stylesheet.css +com diff --git a/projects/samskivert/docs/Makefile b/projects/samskivert/docs/Makefile new file mode 100644 index 00000000..94df333a --- /dev/null +++ b/projects/samskivert/docs/Makefile @@ -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