0acb780715
Nothing within the library actually uses these defines for anything any more. If necessary, the built-in defines __APPLE__ and __linux__ can be used instead of these manually added defines. This is similar to how we use _WIN32 instead of manually defining WIN32.
16 lines
300 B
Makefile
16 lines
300 B
Makefile
include build/platform-arch.mk
|
|
SHAREDLIBSUFFIX = dylib
|
|
SHARED = -dynamiclib
|
|
CFLAGS += -Wall -fPIC -MMD -MP
|
|
LDFLAGS += -lpthread
|
|
ifeq ($(ASM_ARCH), x86)
|
|
ASMFLAGS += -DPREFIX
|
|
ifeq ($(ENABLE64BIT), Yes)
|
|
ASMFLAGS += -f macho64
|
|
else
|
|
ASMFLAGS += -f macho
|
|
LDFLAGS += -read_only_relocs suppress
|
|
endif
|
|
endif
|
|
|