build system fix

This commit is contained in:
p.kosyh 2010-06-01 18:56:51 +00:00
parent 99132cf5ab
commit ac2fffadf8
2 changed files with 9 additions and 2 deletions

View File

@ -9,9 +9,8 @@ all: config.make src/windows
src/windows:
tar xzvf windows.tar.gz
config.make:
echo # you can define own flags here > config.make
echo "# you can define own flags here" > config.make
clean:
$(RM) -rf bin

8
configure-mingw32.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
rm -f config.make
rm -f Rules.make
ln -sf Rules.mingw Rules.make
rm -f sdl-instead
ln -sf src/sdl-instead/sdl-instead sdl-instead
echo "Ok. We are ready to build. Use this command:"
echo " \$ make -f Makefile.mingw setup"