diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2011-04-11 15:28:50 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2011-04-11 15:28:50 +0200 |
commit | 48116a16fcff832406266d1594dac5e42cba5550 (patch) | |
tree | 73455c6b17602db3efeffe4b342d4221ca12ec0b /Makefile | |
parent | ce4860294d1657347e8f209199b8e6dbaba79f5c (diff) |
README added, and Makefile for to DO IT ALL
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0e62765 --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +# 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: 2011 2010 + +2011: + cd 2011; make all; cd ..; + +2010: + cd 2010; make all; cd ..; |