aboutsummaryrefslogtreecommitdiffstats
path: root/os/windows/Makefile
blob: 5ee19c9bfe108821587af84e2f8ce686c2b39414 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
yetihack.exe: src/YetiHack.cpp
	i586-mingw32msvc-g++ -Iinclude src/YetiHack.cpp src/yeti.cpp -o src/yetihack.exe -lpdcurses
	-rm os/windows/yetihack-windows/yetihack.exe
	ln src/yetihack.exe os/windows/yetihack-windows/

package: yetihack.exe
	YETIHACKDIR=`pwd`
	export YETIHACKDIR
	makensis os/windows/install.nsi
	zip yetihack-windows.zip os/windows/yetihack-windows

install: yetihack.exe
	./YetiHack_installer.exe

clean:
	-rm yetihack.exe
	-rm YetiHack_installer.exe
	-rm yetihack-windows.zip
	-rm yetihack-windows/yetihack.exe