openh264/build/platform-darwin.mk

16 lines
321 B
Makefile
Raw Normal View History

include build/platform-arch.mk
2014-02-19 02:54:27 +01:00
SHAREDLIBSUFFIX = dylib
SHARED = -dynamiclib
CFLAGS += -Wall -fPIC -DMACOS -DMT_ENABLED -MMD -MP
LDFLAGS += -lpthread
ifeq ($(ASM_ARCH), x86)
ASMFLAGS += -DPREFIX
2014-01-03 07:49:45 +01:00
ifeq ($(ENABLE64BIT), Yes)
ASMFLAGS += -f macho64
else
ASMFLAGS += -f macho
LDFLAGS += -read_only_relocs suppress
2014-01-03 07:49:45 +01:00
endif
endif
2014-01-03 07:49:45 +01:00