blob: 1d93d289bec45ab79ad339b7177eb165af118cd5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
PANDOC ?= pandoc
PD_FLAGS=--resource-path=$(CURDIR):src --template=uikit.html --toc
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 += $(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)
clean:
rm -rf easy-pandoc-templates
rm -f ./*.html
clear:
rm -f ./*.html
prerequisites: easy-pandoc-templates $(SRC)
easy-pandoc-templates:
git clone https://github.com/ryangrose/easy-pandoc-templates
sources:
@echo $(CURDIR):
@echo $(SRC)
.PHONY: build standalone clean
|