uvg266/src/Makefile

216 lines
4.5 KiB
Makefile
Raw Normal View History

# Simple Makefile for Kvazaar HEVC encoder
#Disable default rules
.SUFFIXES:
ifeq (, $(ARCH))
ARCH = $(shell uname -m)
endif
SYSTEM = $(shell uname -s)
ASMFLAGS =
2014-10-27 16:19:05 +00:00
CFLAGS += -O2 -g -Werror -ftree-vectorize
# ARCH related flags
ifeq ($(ARCH), x86_64)
TARGET_CPU_BITS := 64
TARGET_CPU_ARCH := x86
else ifeq ($(ARCH), ppc64)
TARGET_CPU_BITS := 64
TARGET_CPU_ARCH := ppc
else
#safe (?) defaults
TARGET_CPU_BITS := 32
TARGET_CPU_ARCH := x86
endif
2014-10-27 16:19:05 +00:00
CFLAGS += -m$(TARGET_CPU_BITS)
LDFLAGS += -m$(TARGET_CPU_BITS)
# Windows (cygwin/mingw) specific flags
ifneq ( ,$(findstring Windows, $(OS)))
ifeq ($(ARCH), x86_64)
ASMFLAGS += -f win64
ASMFLAGS += -DHAVE_ALIGNED_STACK=1
else
ASMFLAGS += -f win32
2014-02-21 12:53:47 +00:00
ASMFLAGS += -DPREFIX
ASMFLAGS += -DHAVE_ALIGNED_STACK=0
endif
2014-10-27 16:19:05 +00:00
CFLAGS += -D__USE_MINGW_ANSI_STDIO=1
# OS X specific flags
else ifeq ($(SYSTEM),Darwin)
ifeq ($(ARCH), x86_64)
ASMFLAGS += -f macho64
else
ASMFLAGS += -f macho32
endif
ASMFLAGS += -DPREFIX
# Default to Linux/elf specific flags
else
LDFLAGS += -lrt
2014-02-21 12:53:47 +00:00
ifeq ($(ARCH), x86_64)
ASMFLAGS += -f elf64
else
ASMFLAGS += -f elf32
endif
endif
# Flags shared across systems
ifeq ($(ARCH), x86_64)
ASMFLAGS += -DARCH_X86_64=1
else
ASMFLAGS += -DARCH_X86_64=0
endif
2014-06-12 06:57:08 +00:00
# Do not use variable length arrays because they don't work in Visual Studio 2013.
WARNINGS = -Wall -Wtype-limits -Wvla
INCLUDEDIRS = -I. -I./strategies -I./extras -I..
#Detect if cc is gcc for the link time optimization flag
GCCVERSION = $(shell $(CC) --version | grep GCC)
ifneq (, $(GCCVERSION))
CFLAGS += -flto
LDFLAGS += -flto -O3
endif
2014-10-27 16:19:05 +00:00
CFLAGS += -std=gnu99 $(INCLUDEDIRS) $(WARNINGS)
LDFLAGS += -lm -pthread
LD = gcc
2014-07-18 14:31:18 +00:00
OBJS = interface_main.o \
encmain.o \
bitstream.o \
cabac.o \
checkpoint.o \
config.o \
context.o \
cu.o \
encoder.o \
encoderstate.o \
filter.o \
inter.o \
intra.o \
nal.o \
imagelist.o \
rdo.o \
sao.o \
scalinglist.o \
search.o \
strategyselector.o \
tables.o \
threadqueue.o \
transform.o \
encoder_state-bitstream.o \
encoder_state-ctors_dtors.o \
encoder_state-geometry.o \
image.o \
videoframe.o \
strategies/strategies-picture.o \
strategies/strategies-nal.o \
strategies/strategies-dct.o \
2015-01-21 16:06:57 +00:00
strategies/strategies-ipol.o \
2014-07-18 14:31:18 +00:00
strategies/generic/nal-generic.o \
strategies/generic/picture-generic.o \
strategies/sse2/picture-sse2.o \
strategies/sse41/picture-sse41.o \
strategies/altivec/picture-altivec.o \
strategies/avx2/picture-avx2.o \
strategies/x86_asm/picture-x86-asm.o \
strategies/generic/dct-generic.o \
2015-01-21 16:06:57 +00:00
strategies/avx2/dct-avx2.o \
strategies/generic/ipol-generic.o \
strategies/avx2/ipol-avx2.o \
TEST_OBJS = $(filter-out encmain.o interface_main.o, $(OBJS)) \
../tests/dct_tests.o \
../tests/intra_sad_tests.o \
../tests/sad_tests.o \
../tests/satd_tests.o \
../tests/speed_tests.o \
../tests/tests_main.o \
../tests/test_strategies.o \
ASMFLAGS += $(INCLUDEDIRS)
ASMOBJS =
AS = yasm
# Compile asm files by default if yasm is present.
ifndef KVZ_DISABLE_ASM
has_as := $(shell type $(AS) 2>/dev/null)
ifeq ($(has_as),)
KVZ_DISABLE_ASM := 1
endif
endif
PROG = ./kvazaar
PROGS = $(PROG)
TESTS = ./kvazaar_tests
DEPS = $(OBJS:.o=.d)
GREATEST = ../greatest/greatest.h
all: $(PROGS)
.PHONY: all clean build_tests tests
build_tests: $(GREATEST) $(TESTS)
tests: build_tests
$(TESTS)
$(GREATEST):
git submodule init
git submodule update
# Compile files in strategy directories with appropriate flags.
EXTRA_FLAGS =
ifeq ($(ARCH), ppc64)
strategies/altivec/%.o: EXTRA_FLAGS += -maltivec -fno-lto
else
strategies/sse2/%.o: EXTRA_FLAGS += -msse2 -fno-lto
strategies/sse41/%.o: EXTRA_FLAGS += -msse4.1 -fno-lto
#Needs to be defined on Travis
ifndef KVZ_DISABLE_AVX2
strategies/avx2/%.o: EXTRA_FLAGS += -mavx2 -fno-lto
endif
endif
ifndef KVZ_DISABLE_ASM
ASMOBJS += strategies/x86_asm/picture-x86-asm-sad.o
ASMOBJS += strategies/x86_asm/picture-x86-asm-satd.o
strategies/x86_asm/%.o: EXTRA_FLAGS += -DKVZ_COMPILE_ASM
endif
$(PROG): $(OBJS) $(ASMOBJS)
$(LD) $^ $(LDFLAGS) -o $@
$(TESTS): $(TEST_OBJS) $(ASMOBJS)
$(LD) $^ $(LDFLAGS) -o $@
%.o: %.asm Makefile
$(AS) $(ASMFLAGS) -o $@ $<
%.d: %.asm Makefile
$(AS) $(ASMFLAGS) -M -o $@ > $<
2014-04-15 13:47:17 +00:00
%.o: %.c Makefile
2014-10-27 16:19:05 +00:00
$(CC) $(CFLAGS) $(EXTRA_FLAGS) -c $< -o $@
2014-04-15 13:47:17 +00:00
%.d: %.c Makefile
$(CC) $(CFLAGS) -MF"$@" -MM -MP -MT"$@" -MT"$(<:.c=.o)" "$<"
../tests/%.c: ../tests/%.h Makefile
touch $@
2014-04-16 06:09:10 +00:00
clean:
rm -f $(OBJS) $(PROGS) $(TESTS) $(ASMOBJS) $(TEST_OBJS) $(DEPS)
ifneq ($(MAKECMDGOALS),clean)
-include $(DEPS)
endif