Browse Source

Update name of executable to devilution.exe

This lets it live alongside diablo.exe in the game directory.
pull/4/head
mewmew 8 years ago
parent
commit
1a70a033b8
  1. 4
      Makefile

4
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

Loading…
Cancel
Save