mirror of
https://github.com/gopl-zh/gopl-zh.github.com.git
synced 2024-11-12 17:33:40 +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.
|
|
|
|
#
|
|
# MnBook: Mini Markdown Book
|
|
# https://github.com/wa-lang/mnbook
|
|
#
|
|
|
|
default:
|
|
mnbook serve
|
|
|
|
build:
|
|
-rm book
|
|
mnbook build
|
|
-rm book/.gitignore
|
|
-rm -rf book/.git
|
|
|
|
clean:
|
|
-rm -rf book
|