summaryrefslogtreecommitdiffstats
path: root/site/cleopatra/Bootstrap.org
diff options
context:
space:
mode:
authorThomas Letan <lthms@soap.coffee>2020-02-23 19:04:41 +0100
committerThomas Letan <lthms@soap.coffee>2020-02-23 19:05:56 +0100
commita031c80ba809ea733da56d4e68d838e08a2ba224 (patch)
treeafe0bd731b9b314cbea86463f542149120ec2a1a /site/cleopatra/Bootstrap.org
parentUse a softer theme (diff)
Yet another attempt to only init npm and Emacs when necessary
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