aboutsummaryrefslogtreecommitdiffstats
path: root/os/windows/Makefile
blob: e078d8ebc43679c076e18308f8843fbbce7576fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
yetihack.exe: src/YetiHack.cpp src/yeti.cpp
	i486-mingw32-g++ src/YetiHack.cpp src/yeti.cpp -o src/yetihack.exe -L os/windows/yetihack-windows/pdcurses.dll -static -lpdcurses -Iinclude -static-libgcc -static-libstdc++
	-rm os/windows/yetihack-windows/yetihack.exe
	ln src/yetihack.exe os/windows/yetihack-windows/

package: yetihack.exe
	makensis os/windows/install.nsi
	cd os/windows/yetihack-windows && zip ../../../package/yetihack-windows.zip *

install: yetihack.exe package
	./YetiHack_installer.exe

clean:
	-rm src/yetihack.exe
	-rm package/YetiHack_installer.exe
	-rm package/yetihack-windows.zip
	-rm os/windows/yetihack-windows/yetihack.exe