blob: c987b977d9f2c0cd540bd1ddc0561cb95cd057e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Makefile for to compile all minuets since 2010-11-04.
#
# by Gustav Eek
# TODO create makefile for 2010-11-04
no-args:
echo "This is not recomended. Read README. If you realy want to do ALL write:\n\n $make all\n"
all: agenda 2016 2015 2014 2013 2012 2011 2010
agenda:
cd; agenda; make all; cd ..;
2016:
make -C $@ all
2015:
make -C $@ all
2014:
make -C $@ all
2013:
make -C $@ all
2012:
cd 2012; make all; cd ..;
2011:
cd 2011; make all; cd ..;
2010:
cd 2010; make all; cd ..;
|