From 4b58f24c6b001c78c96a2640841451ab8a47d5f2 Mon Sep 17 00:00:00 2001 From: Nathan Fisher Date: Fri, 19 Feb 2021 22:48:06 -0500 Subject: [PATCH] Initial commit --- .gitignore | 3 +++ .gitmodules | 6 ++++++ Makefile | 13 +++++++++++++ handbook | 1 + hhl | 1 + 5 files changed, 24 insertions(+) create mode 100644 .gitignore create mode 100644 .gitmodules create mode 100644 Makefile create mode 160000 handbook create mode 160000 hhl diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5c6ccfc --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +site/ +data.md +site.txz diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..17daf39 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,6 @@ +[submodule "hhl"] + path = hhl + url = ./hhl +[submodule "handbook"] + path = handbook + url = ./handbook diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..65d67a6 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +subdirs += hhl +subdirs += handbook + +site.txz: $(subdirs) + tar cJf $@ site + +$(subdirs): + $(MAKE) -C $@ + +clean: + rm -rf site + +.PHONY: $(subdirs) clean diff --git a/handbook b/handbook new file mode 160000 index 0000000..3c05f12 --- /dev/null +++ b/handbook @@ -0,0 +1 @@ +Subproject commit 3c05f120d0fbf9874a6589873ab41c3ef75f7da1 diff --git a/hhl b/hhl new file mode 160000 index 0000000..a9de527 --- /dev/null +++ b/hhl @@ -0,0 +1 @@ +Subproject commit a9de527a5c6a889ff02675734d794f00d9939264