sometimes we need a Makefile to be happy

This commit is contained in:
Enno 2011-03-05 04:17:02 +01:00
parent 71988d9912
commit d58d90b853
1 changed files with 13 additions and 0 deletions

13
Makefile Normal file
View File

@ -0,0 +1,13 @@
all: bin/eressea
bin:
mkdir bin
bin/eressea: bin/Makefile
cd bin ; make
bin/Makefile: bin
cd bin ; cmake ..
clean:
rm -rf bin