From 1a70a033b88dc0272f28a81d21762e35c18bc164 Mon Sep 17 00:00:00 2001 From: mewmew Date: Fri, 8 Jun 2018 20:01:04 +0200 Subject: [PATCH] Update name of executable to devilution.exe This lets it live alongside diablo.exe in the game directory. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5fff7fc..7ce2f42 100644 --- a/Makefile +++ b/Makefile @@ -4,9 +4,9 @@ DIABLO_OBJ=$(DIABLO_SRC:.cpp=.o) PKWARE_SRC=$(wildcard 3rdParty/PKWare/*.cpp) PKWARE_OBJ=$(PKWARE_SRC:.cpp=.o) -all: diablo.exe +all: devilution.exe -diablo.exe: $(DIABLO_OBJ) $(PKWARE_OBJ) diabloui.lib storm.lib +devilution.exe: $(DIABLO_OBJ) $(PKWARE_OBJ) diabloui.lib storm.lib i686-w64-mingw32-gcc -L./ -o $@ $^ -lgdi32 -lversion -ldiabloui -lstorm %.o: %.cpp