a164436d98
This is enabled for platforms/compilers that support the -MMD option, which creates a dependency file named out.d when compiling to a file named out.o, only including local, not system headers. The additional -MP option adds phony targets for all included headers, to avoid having make error out due to "no rule to make target foo.h" if a header is renamed/removed. This makes sure that all the right files are rebuilt if a header is changed, avoiding the need for a full rebuild if only a few files are affected.
16 lines
278 B
Makefile
16 lines
278 B
Makefile
ASM = nasm
|
|
CFLAGS += -DMT_ENABLED -MMD -MP
|
|
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
|
|
EXEEXT = .exe
|
|
|