diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-04-16 19:54:59 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-04-16 19:54:59 +0200 |
commit | 5364db9f1069cb75c51d696c075c6e535fdb0411 (patch) | |
tree | 4a9f3a1b768479bb2c386061a6dfb682fd0f8156 /makefile |
hello world
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/makefile b/makefile new file mode 100644 index 0000000..41e74eb --- /dev/null +++ b/makefile @@ -0,0 +1,8 @@ +# this makefile transparently forwards all `make` calls to `redo` for convenience + +.PHONY: FORCE + +all: FORCE + @redo $(MAKECMDGOALS) + +$(MAKECMDGOALS): all |