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

20 lines
505 B
Makefile
Raw Normal View History

2009-08-26 08:25:53 +03:00
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
2009-09-05 10:18:15 +03:00
$(MAKE) -C languages -f Makefile.windows install
2009-08-26 08:25:53 +03:00
$(MAKE) -C doc -f Makefile.windows install