forked from albertlauncher/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
32 lines (32 loc) · 887 Bytes
/
Copy pathMakefile
File metadata and controls
32 lines (32 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#all: doxygen jekyll-build jekyll-deploy
#
#release: all
#
#doxygen:
# rm -rf albert
# git clone --depth 1 https://github.com/albertlauncher/albert.git
# doxygen
# rm -rf src/reference
# mv albert/output/html src/reference
#
#jekyll-build:
# docker run -t --rm -v "$(shell pwd)/src:/srv/jekyll" jekyll/jekyll jekyll build
#
#jekyll-serve:
# docker run -t --rm -v "$(shell pwd)/src:/srv/jekyll" -p "4000:4000" jekyll/jekyll jekyll serve --host 0.0.0.0
#
#jekyll-check:
# docker run -t --rm -v "$(shell pwd)/src/_site:/src" klakegg/html-proofer:3.17.0 --allow-hash-href --check-html --empty-alt-ignore || true
#
#jekyll-deploy:
# git -C ./src/_site init
# git -C ./src/_site add .
# git -C ./src/_site commit -m "Build `date`"
# git -C ./src/_site push --force "https://github.com/albertlauncher/albertlauncher.github.io.git" master
#
#clean:
# rm -rf output albert
#
#
#
#.PHONY: doxygen