From 3bfa985f95968f1c3b6ca57de739d5ffe5ca89b0 Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Sun, 24 Feb 2019 00:57:24 +0100 Subject: =?UTF-8?q?Initial=20on=202019-01-28=20board.=20Reached=20arbetsm?= =?UTF-8?q?=C3=B6tespunkten?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 2019/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to '2019/Makefile') diff --git a/2019/Makefile b/2019/Makefile index 352154d..4771b8e 100644 --- a/2019/Makefile +++ b/2019/Makefile @@ -1,6 +1,7 @@ # Makefile for minutes of 2019 MINUTES = \ +2019-01-28-board \ common-makefile = ../resources/Makefile-common -- cgit v1.2.3 From 2f6ea83c58e39a135826d57ff1f38056915afcc8 Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Tue, 26 Mar 2019 20:46:12 +0100 Subject: Initial on board 2019-03-25 Minutes covered to including activities leaving sysem reports as next. Order is off. --- 2019/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to '2019/Makefile') diff --git a/2019/Makefile b/2019/Makefile index 352154d..0b2ab32 100644 --- a/2019/Makefile +++ b/2019/Makefile @@ -1,6 +1,7 @@ # Makefile for minutes of 2019 MINUTES = \ + 2019-03-25-board \ common-makefile = ../resources/Makefile-common -- cgit v1.2.3 From e0e0a3e3ad4d216fcd50db6950c07f8ad9ad8e2f Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Fri, 7 Jun 2019 16:37:54 +0200 Subject: Minutes May 25, 2019. Abstract provided --- 2019/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to '2019/Makefile') diff --git a/2019/Makefile b/2019/Makefile index 1e0f438..a180545 100644 --- a/2019/Makefile +++ b/2019/Makefile @@ -3,6 +3,7 @@ MINUTES = \ 2019-01-28-board \ 2019-03-25-board \ + 2019-05-27-board \ common-makefile = ../resources/Makefile-common -- cgit v1.2.3 From e4247ab14e56fc8f99857f18fb50b7374e8fd8e7 Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Mon, 10 Jun 2019 17:47:32 +0200 Subject: Minutes Feb 25, 2019. Inial with summary added. --- 2019/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to '2019/Makefile') diff --git a/2019/Makefile b/2019/Makefile index a180545..9cb80ff 100644 --- a/2019/Makefile +++ b/2019/Makefile @@ -2,6 +2,7 @@ MINUTES = \ 2019-01-28-board \ + 2019-02-25-board \ 2019-03-25-board \ 2019-05-27-board \ -- cgit v1.2.3 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 --- 2019/Makefile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to '2019/Makefile') diff --git a/2019/Makefile b/2019/Makefile index 9cb80ff..acfa277 100644 --- a/2019/Makefile +++ b/2019/Makefile @@ -1,15 +1,11 @@ # Makefile for minutes of 2019 -MINUTES = \ - 2019-01-28-board \ - 2019-02-25-board \ - 2019-03-25-board \ - 2019-05-27-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