Move assembly to _asm.cpp (#388)

This commit is contained in:
galaxyhaxz
2018-10-07 00:32:36 -05:00
committed by GitHub
parent 72a13f1d26
commit 0f184f2b71
4 changed files with 147 additions and 147 deletions
+2 -2
View File
@@ -52,8 +52,8 @@ all: Diablo.exe
debug: CFLAGS += /D "_DEBUG"
debug: Diablo.exe
# fix compilation order to match the VC6 workspace files
DIABLO_SRC=$(sort $(filter-out Source/render.cpp, $(wildcard Source/*.cpp)))
# fix compilation order to match the VC6 workspace files and exclude local assembly functions
DIABLO_SRC=$(sort $(filter-out Source/_asm.cpp Source/render.cpp, $(wildcard Source/*.cpp)))
DIABLO_SRC += Source/render.cpp
OBJS=$(DIABLO_SRC:.cpp=.obj)