summaryrefslogtreecommitdiffstats
path: root/site/cleopatra/Bootstrap.org
diff options
context:
space:
mode:
Diffstat (limited to 'site/cleopatra/Bootstrap.org')
-rw-r--r--site/cleopatra/Bootstrap.org8
1 files changed, 6 insertions, 2 deletions
diff --git a/site/cleopatra/Bootstrap.org b/site/cleopatra/Bootstrap.org
index d1386d7..8171a1d 100644
--- a/site/cleopatra/Bootstrap.org
+++ b/site/cleopatra/Bootstrap.org
@@ -87,7 +87,9 @@ their output files (using ~+=~).
- ~GENFILES~ ::
List *~cleopatra~* Makefiles and scripts tangled throughout the generation
- process (with the notable exception of ~Makefile~ itself).
+ process.
+- ~GENAUX~ ::
+ List auxiliary files and directories used by the generation processes.
- ~GENSASS~ ::
List auxiliary ~sass~ files which can later be imported by the main ~sass~
files (see [[./Theme.org][“Theming and Templating”]]).
@@ -97,6 +99,7 @@ their output files (using ~+=~).
#+BEGIN_SRC makefile :tangle Makefile :exports none
GENFILES :=
+GENAUX :=
CONTENTS :=
GENSASS :=
#+END_SRC
@@ -298,6 +301,7 @@ build : ${CONTENTS} ${GENFILES}
@scripts/update-gitignore.sh \
${CONTENTS} \
${GENFILES} \
+ ${GENAUX} \
${GENSASS} \
build.log
#+END_SRC
@@ -333,7 +337,7 @@ clean :
cleanall : clean
@echo " remove everything else"
- @rm -rf ${GENSASS} ${GENFILES}
+ @rm -rf ${GENSASS} ${GENFILES} ${GENAUX}
force : clean build