Rename build.org -> literate-build.org

This commit is contained in:
Tom Willemse 2023-07-26 12:19:17 -07:00
parent 5bca336146
commit 370c1e3bbf
3 changed files with 4 additions and 4 deletions

View file

@ -5,7 +5,7 @@ define tangle =
-eval "(org-babel-tangle-file \"$<\" \"$(PWD)/$@\"$(if $1, \"$1\"))" -eval "(org-babel-tangle-file \"$<\" \"$(PWD)/$@\"$(if $1, \"$1\"))"
endef endef
%.mk: build.org build.mk: literate-build.org
$(call tangle) $(call tangle)
include build.mk include build.mk

View file

@ -29,7 +29,7 @@ The first topic I pay any attention to of course has to be [[file:emacs.org][Ema
* My literate configuration * My literate configuration
Every so often I get really drawn to remaking my entire configuration into a [[file:literate-programming.org][Literate Programming]] style. See my [[file:config/rincewind.org][latest attempt]] and also my [[file:build.org][literate build files]] for this website. Every so often I get really drawn to remaking my entire configuration into a [[file:literate-programming.org][Literate Programming]] style. See my [[file:config/rincewind.org][latest attempt]] and also my [[file:literate-build.org][literate build files]] for this website.
* Topics * Topics

View file

@ -16,7 +16,7 @@ define tangle =
-eval "(org-babel-tangle-file \"$<\" \"$(PWD)/$@\"$(if $1, \"$1\"))" -eval "(org-babel-tangle-file \"$<\" \"$(PWD)/$@\"$(if $1, \"$1\"))"
endef endef
%.mk: build.org build.mk: literate-build.org
$(call tangle) $(call tangle)
#+end_src #+end_src
@ -129,7 +129,7 @@ theme: Eldev ## Generate the theme CSS
The =Eldev= target just tangles the {{{input-file}}} into the =Eldev= file. This uses the =tangle= function defined in the intro section. The =Eldev= target just tangles the {{{input-file}}} into the =Eldev= file. This uses the =tangle= function defined in the intro section.
#+begin_src makefile-gmake #+begin_src makefile-gmake
Eldev: build.org Eldev: literate-build.org
$(call tangle) $(call tangle)
#+end_src #+end_src