steed/Makefile.windows

24 lines
668 B
Makefile
Raw Normal View History

2009-08-26 08:25:53 +03:00
MAKE=mingw32-make
2009-11-08 16:53:18 +02:00
all: config.make
2010-06-09 10:56:06 +03:00
$(MAKE) -C src\zlib -f Makefile.windows all
2009-08-26 08:25:53 +03:00
$(MAKE) -C src\sdl-instead all
$(MAKE) -C themes -f Makefile.windows all
2009-11-08 16:53:18 +02:00
config.make:
2009-11-16 19:36:42 +02:00
echo # you can define own flags here > config.make
2009-11-08 16:53:18 +02:00
2009-08-26 08:25:53 +03:00
clean:
$(MAKE) -C src\sdl-instead clean
2010-06-09 10:56:06 +03:00
$(MAKE) -C src\zlib -f Makefile.windows clean
2009-08-26 08:25:53 +03:00
install: all
if not exist bin mkdir bin
copy src\sdl-instead\sdl-instead.exe bin
$(MAKE) -C themes -f Makefile.windows install
$(MAKE) -C games -f Makefile.windows install
$(MAKE) -C stead -f Makefile.windows install
$(MAKE) -C icon -f Makefile.windows install
2011-03-07 15:39:06 +02:00
$(MAKE) -C lang -f Makefile.windows install
2009-08-26 08:25:53 +03:00
$(MAKE) -C doc -f Makefile.windows install