public
Description: An isometric graphical interface for the games NetHack and Slash'EM
Homepage: http://clivecrous.github.com/vultures/
Clone URL: git://github.com/clivecrous/vultures.git
Click here to lend your support to: vultures and make a donation at www.pledgie.com !
vultures / mingw-make-slashem.bat
100644 31 lines (25 sloc) 0.667 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
@which bison
@IF ERRORLEVEL 1 GOTO need_gnuwin
@which flex
@if ERRORLEVEL 1 GOTO need_gnuwin
 
REM ---------- Slash'EM ----------
del /S /Q slashem\win\vultures
mkdir slashem\win\vultures
xcopy /E /-Y vultures\* slashem\win\vultures\
cd slashem\sys\winnt
call nhsetup
cd ..\..\src
mingw32-make -f Makefile.gcc spotless
mingw32-make -f Makefile.gcc all
cd ..\..
strip --strip-all slashem\binary\VulturesClaw.exe
 
goto EOF
 
:need_gnuwin
@echo.
@echo You need flex and bison to build vultures.
@echo A good place to get them is the gnuwin project
@echo see http://gnuwin32.sourceforge.net/
@echo.
@echo Be sure to use the gnuwin32 prompt for correct paths
@echo.
 
 
:EOF