forked from github/server
sometimes we need a Makefile to be happy
This commit is contained in:
parent
71988d9912
commit
d58d90b853
1 changed files with 13 additions and 0 deletions
13
Makefile
Normal file
13
Makefile
Normal 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
|
Loading…
Reference in a new issue