2018-06-08 09:23:30 +00:00
|
|
|
DIABLO_SRC=$(wildcard Source/*.cpp)
|
|
|
|
DIABLO_OBJ=$(DIABLO_SRC:.cpp=.o)
|
|
|
|
|
|
|
|
PKWARE_SRC=$(wildcard 3rdParty/PKWare/*.cpp)
|
|
|
|
PKWARE_OBJ=$(PKWARE_SRC:.cpp=.o)
|
|
|
|
|
2018-06-08 18:01:04 +00:00
|
|
|
all: devilution.exe
|
2018-06-08 09:23:30 +00:00
|
|
|
|
2018-06-14 07:38:27 +00:00
|
|
|
devilution.exe: $(DIABLO_OBJ) $(PKWARE_OBJ) DiabloUI.lib Storm.lib
|
2018-06-08 09:23:30 +00:00
|
|
|
i686-w64-mingw32-gcc -L./ -o $@ $^ -lgdi32 -lversion -ldiabloui -lstorm
|
|
|
|
|
|
|
|
%.o: %.cpp
|
|
|
|
i686-w64-mingw32-gcc -c -fpermissive -o $@ $<
|
|
|
|
|
2018-06-14 07:38:27 +00:00
|
|
|
DiabloUI.lib: DiabloUI.dll DiabloUI/diabloui_gcc.def
|
|
|
|
i686-w64-mingw32-dlltool -d DiabloUI/diabloui_gcc.def -D DiabloUI.dll -l DiabloUI.lib
|
2018-06-08 09:23:30 +00:00
|
|
|
|
2018-06-14 07:38:27 +00:00
|
|
|
DiabloUI.dll:
|
|
|
|
echo "Please copy DiabloUI.dll (version 1.09b) here."
|
2018-06-08 09:23:30 +00:00
|
|
|
exit 1
|
|
|
|
|
2018-06-14 07:38:27 +00:00
|
|
|
Storm.lib: Storm.dll 3rdParty/Storm/Source/storm_gcc.def
|
|
|
|
i686-w64-mingw32-dlltool -d 3rdParty/Storm/Source/storm_gcc.def -D Storm.dll -l Storm.lib
|
2018-06-08 09:23:30 +00:00
|
|
|
|
2018-06-14 07:38:27 +00:00
|
|
|
Storm.dll:
|
|
|
|
echo "Please copy Storm.dll (version 1.09b) here."
|
2018-06-08 09:23:30 +00:00
|
|
|
exit 1
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f $(DIABLO_OBJ) $(PKWARE_OBJ)
|
|
|
|
|
|
|
|
.PHONY: clean all
|