diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2020-06-16 07:45:26 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2020-06-21 21:41:34 +0200 |
commit | 31673b10d7bf3175d5de26734dd934bbbfc4ec18 (patch) | |
tree | 7ffebac3d3e69ae0ce6687d4c1a5c37eda3c83bb /2020 | |
parent | cf28765285f552845d61f6d5a7897894f7a994b9 (diff) |
Minutes May 25, 2020. Makefile and gitinore for completed minutes.
Diffstat (limited to '2020')
-rw-r--r-- | 2020/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/2020/Makefile b/2020/Makefile index 0c8ebc8..26f6bd1 100644 --- a/2020/Makefile +++ b/2020/Makefile @@ -1,13 +1,14 @@ # Makefile for minutes -MINUTES := $(basename $(shell ls *.tex 2> /dev/null)) +COMPLETES := $(subst .sed.gpg,-complete, $(wildcard *.sed.gpg)) +MINUTES := $(basename $(shell ls *.tex 2> /dev/null | grep -v complete)) \ common-makefile = ../resources/Makefile-common help: - @make -s -f $(common-makefile) help SEND_FILES="$(MINUTES)" + @make -s -f $(common-makefile) help SEND_FILES="$(MINUTES) $(COMPLETES)" -all: $(MINUTES) +all: $(MINUTES) $(COMPLETES) %: make -f $(common-makefile) compile FILE=$* |