797a19e367
The library uses this define to enable OS X specific functionality in general, even if none of those snippets actually have been strictly required so far.
12 lines
211 B
Makefile
12 lines
211 B
Makefile
|
|
ASM = nasm
|
|
CFLAGS += -Wno-deprecated-declarations -Werror -fPIC -DMACOS
|
|
LDFLAGS += -lpthread
|
|
ASMFLAGS += --prefix _ -DNOPREFIX
|
|
ifeq ($(ENABLE64BIT), Yes)
|
|
ASMFLAGS += -f macho64
|
|
else
|
|
ASMFLAGS += -f macho
|
|
endif
|
|
|