1
0
Fork 0

Update name of executable to devilution.exe

This lets it live alongside diablo.exe in the game directory.
pull/7/head
mewmew 2018-06-08 20:01:04 +02:00
parent 19f78a991a
commit 1a70a033b8
1 changed files with 2 additions and 2 deletions

View File

@ -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