5cb3fc93e0
Nothing within the project uses it, and it's not necessary to build the project either, tested on both linux and mingw.
15 lines
242 B
Makefile
15 lines
242 B
Makefile
ASM = nasm
|
|
CFLAGS +=
|
|
LDFLAGS +=
|
|
ifeq ($(ENABLE64BIT), Yes)
|
|
ASMFLAGS += -f win64
|
|
ASMFLAGS_PLATFORM = -DWIN64
|
|
CFLAGS += -DWIN64
|
|
CXX = x86_64-w64-mingw32-g++
|
|
AR = x86_64-w64-mingw32-ar
|
|
else
|
|
ASMFLAGS += -f win32 -DPREFIX
|
|
CFLAGS += -DWIN32
|
|
endif
|
|
|