summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikhail Kobuk <[email protected]>2024-04-13 07:17:27 +0300
committerMikhail Kobuk <[email protected]>2024-04-13 07:17:27 +0300
commita078abfcfaf9ea87bd2f9223f4c8b4f6b76004ab (patch)
treee399b774d2c9d29a1f3818dedba18988d7c5c6e5
parenta288b29ddc37eefeebf41ef25ec7cd60879e3c75 (diff)
downloadlinux-labs-a078abfcfaf9ea87bd2f9223f4c8b4f6b76004ab.tar.gz
linux-labs-a078abfcfaf9ea87bd2f9223f4c8b4f6b76004ab.zip
updated build system
-rw-r--r--Makefile11
-rwxr-xr-xbuild.sh2
-rwxr-xr-xmksite.sh48
3 files changed, 59 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index bb3ccd3..1d93d28 100644
--- a/Makefile
+++ b/Makefile
@@ -4,14 +4,20 @@ PD_FORMAT=-f markdown -t html
PD_STANDALONE=--standalone --embed-resources
# SRC = $(wildcard ./lab*/*.md)
+SRC_INTRO = index.md
+OUT_INTRO = $(patsubst %.md,%.html, $(SRC_INTRO))
SRC = $(wildcard ./lab*)
-SRC += Linux_labs_0_Introduction.md
+SRC += $(SRC_INTRO)
default: all
all: build
build: prerequisites
+ ./build.sh "$(PANDOC)" "$(PD_FLAGS)" "$(PD_FORMAT)" $(SRC)
+ mkdir -pv ./LinuxLabs
+ ./mksite.sh $(SRC)
+ tar -czvf LinuxLabs.tar.gz LinuxLabs/
standalone: prerequisites
./build.sh "$(PANDOC)" "$(PD_FLAGS) $(PD_STANDALONE)" "$(PD_FORMAT)" $(SRC)
@@ -20,6 +26,9 @@ clean:
rm -rf easy-pandoc-templates
rm -f ./*.html
+clear:
+ rm -f ./*.html
+
prerequisites: easy-pandoc-templates $(SRC)
easy-pandoc-templates:
diff --git a/build.sh b/build.sh
index 0067dac..33c8576 100755
--- a/build.sh
+++ b/build.sh
@@ -36,7 +36,7 @@ for src in ${sources}; do
elif [ -f ${src} ] && [ "${src##*.}" == "md" ]; then
printf "\tfound md file: ${src}\n"
- printf "\t${panexec} ${panflags} ${src} ${panformat} -o ${src%.*}.html"
+ printf "\t${panexec} ${panflags} ${src} ${panformat} -o ${src%.*}.html\n"
${panexec} ${panflags} ${src} ${panformat} -o ${src%.*}.html
else
printf "Unknown source (%s) - skipping\n" "$src"
diff --git a/mksite.sh b/mksite.sh
new file mode 100755
index 0000000..c0bbc8f
--- /dev/null
+++ b/mksite.sh
@@ -0,0 +1,48 @@
+#! /bin/bash
+
+# USE: ./build.sh <pandoc> <pandoc_flags> <pandoc_format> [sources]
+
+sources=${@}
+echo "sources: ${sources}"
+
+function process_dir() {
+ pushd .
+ arg_dir=$1
+
+ cd ${arg_dir}
+ indir_src="$(find . -name '*.md')"
+ indir_out="${indir_src##*/}"
+ ${panexec} ${panflags} ${indir_src} ${panformat} -o ../${indir_out%.*}.html
+
+ mkdir ../site/${arg_dir}
+
+ cp -v ./*.png ../site/${arg_dir}
+ mv -v ../${indir_out%.*}.html ../site/${arg_dir}/index.html
+
+ popd
+}
+
+for src in ${sources}; do
+ if [ -d ${src} ]; then
+ printf "\tfound dir: ${src}\n"
+
+ if [ "$(find ${src} -name '*.md' | wc -l)" != "1" ]; then
+ printf "\tToo many files in dir. Won't build. Skipping.\n"
+ continue
+ fi
+
+ process_dir ${src}
+
+ elif [ -f ${src} ] && [ "${src##*.}" == "md" ]; then
+ printf "\tfound md file: ${src}\n"
+
+ printf "\tmv -v ${src%.*}.html ../site/${src%.*}.html\n"
+ mv -v ${src%.*}.html site/
+ else
+ printf "Unknown source (%s) - skipping\n" "$src"
+ fi
+done
+
+#for lab in $(find . -maxdepth 1 -name "lab*" -type d); do
+# echo "Found directory ${lab}"
+#done