# Makefile for minutes of 2019

MINUTES = \
  2019-01-28-board \
  2019-02-25-board \
  2019-03-25-board \
  2019-05-27-board \

common-makefile = ../resources/Makefile-common

help:
	@make -s -f $(common-makefile) help

all: $(MINUTES)

%:
	make -f $(common-makefile) compile FILE=$*

send:
	make -f $(common-makefile) send SEND_FILES="$(MINUTES)"
clean:
	make -f $(common-makefile) clean