mirror of
https://github.com/gopl-zh/gopl-zh.github.com.git
synced 2024-11-14 10:23:42 +00:00
21 lines
362 B
Makefile
21 lines
362 B
Makefile
# Copyright 2015 Golang-China. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style
|
|
# license that can be found in the LICENSE file.
|
|
|
|
#
|
|
# WaBook: Mini Markdown Book
|
|
# https://github.com/wa-lang/wabook
|
|
#
|
|
|
|
default:
|
|
wabook serve
|
|
|
|
build:
|
|
-rm book
|
|
wabook build
|
|
-rm book/.gitignore
|
|
-rm -rf book/.git
|
|
|
|
clean:
|
|
-rm -rf book
|