From fa1d0dc68bb4e1d7212c140aa5e953349c639bab Mon Sep 17 00:00:00 2001 From: Takumi Sueda Date: Sun, 18 Oct 2020 01:19:14 +0900 Subject: [PATCH] Add Makefile / add TOC generator target --- Home.md | 9 +++++++++ Makefile | 7 +++++++ 2 files changed, 16 insertions(+) create mode 100644 Makefile diff --git a/Home.md b/Home.md index f3af6db..1e5cbd2 100644 --- a/Home.md +++ b/Home.md @@ -1,3 +1,12 @@ + + +### 目次 + +- [U-Boot](#u-boot) +- [Linux](#linux) + + + Brain Hackers Wiki へようこそ! ## U-Boot diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..517e352 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +.PHONY: +install-dependency: + npm install -g doctoc + +.PHONY: +doctoc: + doctoc --title "### 目次" .