]> git.donarmstrong.com Git - ptouch_web.git/blob - Makefile
add bootstrap css
[ptouch_web.git] / Makefile
1 #!/usr/bin/make -f
2
3 all: assets/bootstrap.min.css assets/bootstrap.bundle.min.js
4
5 BOOTSTRAP_VERSION=5
6 BOOTSWATCH_VERSION=5
7
8 assets/bootstrap.min.css:
9         curl -o "$@" "https://cdn.jsdelivr.net/npm/bootswatch@${BOOTSWATCH_VERSION}/dist/darkly/bootstrap.min.css"
10
11 assets/bootstrap.bundle.min.js:
12         curl -o "$@" "https://cdn.jsdelivr.net/npm/bootstrap@${BOOTSTRAP_VERSION}/dist/js/bootstrap.bundle.min.js"
13
14
15 clean:
16         rm -f assets/bootstrap.*