Subversion URL: http://proj.badc.rl.ac.uk/svn/ndg-security/TI12-security/trunk/ndg_xacml/ndg/xacml/core/documentation/Makefile@7109
Revision 7109,
689 bytes
checked in by pjkersha, 11 years ago
(diff) |
Incomplete - task 2: XACML-Security Integration
- updating epydoc ready for release.
|
-
Property svn:keywords set to
Id
|
Line | |
---|
1 | # |
---|
2 | # Makefile to generate epydoc documentation for the NDG XACML Package |
---|
3 | # |
---|
4 | # NERC DataGrid |
---|
5 | # |
---|
6 | # @author P J Kershaw 28/06/10 |
---|
7 | # |
---|
8 | |
---|
9 | # @copyright: (C) 2010 STFC |
---|
10 | # |
---|
11 | # @license: BSD |
---|
12 | # |
---|
13 | # $Id$ |
---|
14 | |
---|
15 | # Generate HTML from embedded epydoc text in source code. |
---|
16 | EPYDOC=epydoc |
---|
17 | EPYDOC_INDIR=../../../ |
---|
18 | EPYDOC_OUTDIR=. |
---|
19 | EPYDOC_NAME='NDG XACML' |
---|
20 | EPYDOC_LOGFILE=epydoc.log |
---|
21 | EPYDOC_OPTS=--no-frames --include-log --graph=all -v |
---|
22 | ZIP=zip |
---|
23 | ZIP_OUTFILE=./documentation.zip |
---|
24 | ZIP_INFILES=./*.* |
---|
25 | |
---|
26 | epydoc: |
---|
27 | ${EPYDOC} ${EPYDOC_INDIR} -o ${EPYDOC_OUTDIR} --name ${EPYDOC_NAME} \ |
---|
28 | ${EPYDOC_OPTS} > ${EPYDOC_LOGFILE} |
---|
29 | |
---|
30 | zip: epydoc |
---|
31 | ${ZIP} ${ZIP_OUTFILE} ${ZIP_INFILES} |
---|
32 | |
---|
33 | clean: |
---|
34 | rm -f *.txt *.html *.gif *.css *.js *.png *.log *.zip |
---|
Note: See
TracBrowser
for help on using the repository browser.