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
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