Skip to content

Commit

Permalink
Merge pull request #3085 from afbjorklund/website-make
Browse files Browse the repository at this point in the history
website: add simple makefile for testing locally
  • Loading branch information
AkihiroSuda authored Jan 6, 2025
2 parents 5b0919a + 503984a commit 1db82a6
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions website/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# See also: package.json
NPM ?= npm

build serve: _output/docsy
$(NPM) run $@

_output/docsy:
$(MAKE) -C .. docsy

clean:
$(NPM) run $@
rm -Rf _output

0 comments on commit 1db82a6

Please sign in to comment.