This repository has been archived on 2019-04-06. You can view files and clone it, but cannot push or open issues or pull requests.
adventin/Makefile.windows
2009-08-26 05:25:53 +00:00

19 lines
455 B
Makefile

MAKE=mingw32-make
all:
$(MAKE) -C src\sdl-instead all
$(MAKE) -C themes -f Makefile.windows all
clean:
$(MAKE) -C src\sdl-instead clean
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
$(MAKE) -C doc -f Makefile.windows install