From a031c80ba809ea733da56d4e68d838e08a2ba224 Mon Sep 17 00:00:00 2001 From: Thomas Letan Date: Sun, 23 Feb 2020 19:04:41 +0100 Subject: Yet another attempt to only init npm and Emacs when necessary --- site/cleopatra/Bootstrap.org | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'site/cleopatra/Bootstrap.org') 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 -- cgit v1.2.3