mirror of
https://github.com/kd2org/picodav.git
synced 2024-11-16 16:48:26 +01:00
14 lines
445 B
Makefile
14 lines
445 B
Makefile
|
all: clean index.php
|
||
|
|
||
|
deps:
|
||
|
@-mkdir -p lib/KD2/WebDAV
|
||
|
wget -O lib/KD2/WebDAV/Server.php '${KD2FW_URL}WebDAV/Server.php'
|
||
|
wget -O lib/KD2/WebDAV/AbstractStorage.php '${KD2FW_URL}WebDAV/AbstractStorage.php'
|
||
|
wget -O webdav.js https://raw.githubusercontent.com/kd2org/webdav-manager.js/main/webdav.js
|
||
|
wget -O webdav.css https://raw.githubusercontent.com/kd2org/webdav-manager.js/main/webdav.css
|
||
|
|
||
|
clean:
|
||
|
rm -f index.php
|
||
|
|
||
|
index.php:
|
||
|
php make.php
|