diff options
Diffstat (limited to 'modules/xmlrpc/doc/Makefile')
-rwxr-xr-x | modules/xmlrpc/doc/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/xmlrpc/doc/Makefile b/modules/xmlrpc/doc/Makefile new file mode 100755 index 00000000..77a47180 --- /dev/null +++ b/modules/xmlrpc/doc/Makefile @@ -0,0 +1,17 @@ +WEB=/var/www/xmlrpc/doc + +all: index.html + +index.html: xmlrpc_php.sgml + jade -t sgml -d custom.dsl xmlrpc_php.sgml + +clean: + rm -f *.html + +install: + mkdir -p ${WEB} + cp *.html ${WEB} + +web: + mkdir -p ${WEB} + cp *.html ${WEB} |