commit ba7cea580ed2c64119079b8d1192070e399d0ac3
parent fb37990619a3a6128c32549fb08e69472036136a
Author: kocotian <kocotian@kocotian.pl>
Date: Mon, 22 Mar 2021 18:23:25 +0100
generate -> compile continuation
Diffstat:
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -1,4 +1,5 @@
-generate
+compile
+templates
in
meta
out
diff --git a/Makefile b/Makefile
@@ -31,7 +31,7 @@ pages: generator
SRCLIB = util.c
OBJLIB = ${SRCLIB:.c=.o}
-SRC = generate.c
+SRC = compile.c
EXE = ${SRC:.c=}
generator: buildoptions ${EXE} assemble.o
@@ -70,7 +70,7 @@ OUTDIR = out/
OUTDIRS = $(subst $(METADIR),$(OUTDIR),$(METADIRS))
OUT = $(subst $(METADIR),$(OUTDIR),$(BIN:.bin=.html))
-GENERATOR = ./generate
+GENERATOR = ./compile
pages: ${OUT}