mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-05 02:39:47 +02:00
17 lines
223 B
Makefile
Executable file
17 lines
223 B
Makefile
Executable file
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}
|