Create a more automatic makefile for org-mode trees.

Unfortunately, this seems to rebuild every source file every time so I still need to work on fixing that.
This commit is contained in:
Tom Alexander 2023-03-21 14:18:14 -04:00
parent 6b5db46205
commit f8bce7e1a6
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
3 changed files with 50 additions and 0 deletions

25
org_mode_samples/Makefile Normal file
View File

@ -0,0 +1,25 @@
SHELL := bash
.ONESHELL:
.SHELLFLAGS := -eu -o pipefail -c
.DELETE_ON_ERROR:
MAKEFLAGS += --warn-undefined-variables
MAKEFLAGS += --no-builtin-rules
SUBDIRS := $(wildcard */.)
OUT=out
ifeq ($(origin .RECIPEPREFIX), undefined)
$(error This Make does not support .RECIPEPREFIX. Please use GNU Make 4.0 or later)
endif
.RECIPEPREFIX = >
.PHONY: all
all:
> for dir in $(SUBDIRS); do \
> make -C $$dir $@; \
> done
.PHONY: clean
clean:
> for dir in $(SUBDIRS); do \
> make -C $$dir $@; \
> done

View File

@ -0,0 +1,24 @@
SHELL := bash
.ONESHELL:
.SHELLFLAGS := -eu -o pipefail -c
.DELETE_ON_ERROR:
MAKEFLAGS += --warn-undefined-variables
MAKEFLAGS += --no-builtin-rules
OUT=out
SRCFILES := $(wildcard *.org)
OUTFILES := $(patsubst %.org,%.org.tree.txt,$(SRCFILES))
ifeq ($(origin .RECIPEPREFIX), undefined)
$(error This Make does not support .RECIPEPREFIX. Please use GNU Make 4.0 or later)
endif
.RECIPEPREFIX = >
.PHONY: all
all: ../common.el ../dump_org_ast.bash $(SRCFILES)
> for f in $(SRCFILES); do
> ../dump_org_ast.bash $$f $$f.tree.txt; \
> done
.PHONY: clean
clean:
> rm -rf $(OUTFILES)

View File

@ -0,0 +1 @@
This folder is an investigation into whether or not my exit matchers should operate from the top down or bottom up.