From 2ec6f81de8d725d515cb014f6910400185594fbc Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Sun, 11 Aug 2019 18:55:19 +0200 Subject: Massive Makefile update Instead of hard coaded minute list in Makefiles, the list is each minutes lists in Makefile is compiled from an shell *ls* command. Need change in how help works, and therefore all Makefiles coupled to Makefile-common --- 2014/Makefile | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) (limited to '2014') diff --git a/2014/Makefile b/2014/Makefile index 38a83e7..aaa6f02 100644 --- a/2014/Makefile +++ b/2014/Makefile @@ -1,24 +1,11 @@ # Makefile for minutes of 2014 -MINUTES = \ -2014-02-11-board \ -2014-02-24-board \ -2014-03-24-board \ -2014-03-29-annual \ -2014-04-21-board \ -2014-05-19-board \ -2014-05-19-board-excerpt \ -2014-06-16-board \ -2014-09-08-board \ -2014-10-06-board \ -2014-11-03-board \ -2014-12-01-board \ - +MINUTES := $(basename $(shell ls *.tex 2> /dev/null)) common-makefile = ../resources/Makefile-common help: - @make -s -f $(common-makefile) help + @make -s -f $(common-makefile) help SEND_FILES="$(MINUTES)" all: $(MINUTES) -- cgit v1.2.3