Skip to content

Commit

Permalink
Added Document Generation Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
wrayjustin committed Dec 30, 2020
1 parent 64b0ff7 commit eceae5d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions docs/Makefile
@@ -0,0 +1,28 @@
DEBUG=JEKYLL_GITHUB_TOKEN=blank PAGES_API_URL=http://0.0.0.0

default:
@gem install jekyll bundler && bundle install

update:
@bundle update

clean:
@bundle exec jekyll clean

clean-markdown:
@find . -type f -name "*.md" -delete

clean-doxygen:
@rm -rf _doxygen-headers
@rm -rf _doxygen-source

clean-doxygen-built:
@find code/ -type f -delete

clean-local: clean clean-doxygen

build: clean
@${DEBUG} bundle exec jekyll build --profile --config _config.yml,.debug.yml

server: clean
@${DEBUG} bundle exec jekyll server --livereload --config _config.yml,.debug.yml

0 comments on commit eceae5d

Please sign in to comment.