Commit Description:
Add missing component and message.
Commit Description:
Add missing component and message.
File last commit:
Show/Diff file:
Action:
FNA/lib/Theorafile/Makefile
130 lines | 3.4 KiB | text/x-makefile | MakefileLexer
# Makefile for Theorafile
# Written by Ethan "flibitijibibo" Lee
# Detect cross targets
TRIPLET=$(shell $(CC) -dumpmachine)
WINDOWS_TARGET=0
APPLE_TARGET=0
ifeq ($(OS), Windows_NT) # cygwin/msys2
WINDOWS_TARGET=1
endif
ifneq (,$(findstring w64-mingw32,$(TRIPLET)))
WINDOWS_TARGET=1
endif
ifneq (,$(findstring w64-windows,$(TRIPLET)))
WINDOWS_TARGET=1
endif
ifneq (,$(findstring apple-darwin,$(TRIPLET)))
APPLE_TARGET=1
endif
ifneq (,$(findstring x86_64,$(TRIPLET)))
DEFINES += -DOC_X86_ASM -DOC_X86_64_ASM
TFSRC_ARCH_OPT = $(TFSRC_ARCH_X86)
endif
ifneq (,$(findstring i686,$(TRIPLET)))
DEFINES += -DOC_X86_ASM
TFSRC_ARCH_OPT = $(TFSRC_ARCH_X86)
endif
# this requires the compiler to support the ARM Neon, Media, and EDSP extensions
ifneq (,$(findstring armv7,$(TRIPLET)))
DEFINES += -DOC_ARM_ASM -DOC_ARM_ASM_EDSP -DOC_ARM_ASM_MEDIA -DOC_ARM_ASM_NEON
TFSRC_ARCH_OPT = $(TFSRC_ARCH_AARCH32)
endif
# Compiler
ifeq ($(WINDOWS_TARGET),1)
TARGET = dll
LDFLAGS += -static-libgcc
else ifeq ($(APPLE_TARGET),1)
CC += -mmacosx-version-min=10.9
TARGET = dylib
CFLAGS += -fpic -fPIC
LDFLAGS += -install_name @rpath/libtheorafile.dylib
else
TARGET = so
CFLAGS += -fpic -fPIC
endif
LIB = libtheorafile.$(TARGET)
CFLAGS += -O3
SRCDIR = $(dir $(MAKEFILE_LIST))
vpath %.c $(SRCDIR)
# Includes
INCLUDES = -I$(SRCDIR) -I$(SRCDIR)/lib -I$(SRCDIR)/lib/ogg -I$(SRCDIR)/lib/vorbis -I$(SRCDIR)/lib/theora
# Source
TFSRC = $(TFSRC_ARCH_GENERIC) $(TFSRC_ARCH_OPT)
TFSRC_ARCH_GENERIC = \
theorafile.c \
lib/ogg/bitwise.c \
lib/ogg/framing.c \
lib/vorbis/analysis.c \
lib/vorbis/bitrate.c \
lib/vorbis/block.c \
lib/vorbis/codebook.c \
lib/vorbis/envelope.c \
lib/vorbis/floor0.c \
lib/vorbis/floor1.c \
lib/vorbis/vinfo.c \
lib/vorbis/lookup.c \
lib/vorbis/lpc.c \
lib/vorbis/lsp.c \
lib/vorbis/mapping0.c \
lib/vorbis/mdct.c \
lib/vorbis/psy.c \
lib/vorbis/registry.c \
lib/vorbis/res0.c \
lib/vorbis/sharedbook.c \
lib/vorbis/smallft.c \
lib/vorbis/synthesis.c \
lib/vorbis/window.c \
lib/theora/apiwrapper.c \
lib/theora/bitpack.c \
lib/theora/decapiwrapper.c \
lib/theora/decinfo.c \
lib/theora/decode.c \
lib/theora/dequant.c \
lib/theora/fragment.c \
lib/theora/huffdec.c \
lib/theora/idct.c \
lib/theora/tinfo.c \
lib/theora/internal.c \
lib/theora/quant.c \
lib/theora/state.c
TFSRC_ARCH_X86 = \
lib/theora/x86/mmxfrag.c \
lib/theora/x86/mmxidct.c \
lib/theora/x86/mmxstate.c \
lib/theora/x86/sse2idct.c \
lib/theora/x86/x86cpu.c \
lib/theora/x86/x86state.c
AARCH32_ASSEMBLY_NAMES = bits frag idct loop
AARCH32_ASSEMBLY_GNU_SOURCES = $(foreach name,$(AARCH32_ASSEMBLY_NAMES) opts,lib/theora/arm/arm$(name)-gnu.S)
AARCH32_ASSEMBLY_OBJS = $(foreach name,$(AARCH32_ASSEMBLY_NAMES),lib/theora/arm/arm$(name).o)
TFSRC_ARCH_AARCH32 = \
lib/theora/arm/armstate.c \
lib/theora/arm/armcpu.c \
$(AARCH32_ASSEMBLY_OBJS)
# Targets
.PHONY: lib all clean test
lib: $(LIB)
all: $(LIB) theorafile-test
clean:
rm -f $(LIB) theorafile-test $(AARCH32_ASSEMBLY_OBJS) $(AARCH32_ASSEMBLY_GNU_SOURCES)
test: theorafile-test
$(LIB): $(TFSRC)
$(CC) $(CFLAGS) -shared -o $@ $^ $(INCLUDES) $(DEFINES) -lm $(LDFLAGS)
theorafile-test: $(TFSRC)
$(CC) $(CFLAGS) -g -o $@ sdl2test/sdl2test.c $(TFSRC) $(INCLUDES) $(DEFINES) `sdl2-config --cflags --libs` -lm
lib/theora/arm/armfrag.o: lib/theora/arm/armopts-gnu.S
.INTERMEDIATE: lib/theora/arm/armopts-gnu.S
.SUFFIXES:
%-gnu.S: %.s
lib/theora/arm/arm2gnu.pl < $< > $@
%.o: %-gnu.S
$(CC) -c -o $@ -Ilib/theora/arm $<