Home | History | Annotate | Download | only in make
      1 # Get the current local path as the first operation
      2 LOCAL_PATH := $(call get_makefile_dir)
      3 
      4 # Clear out the variables used in the local makefiles
      5 include $(MK)/clear.mk
      6 
      7 TARGET := colorconvert
      8 
      9 XCXXFLAGS := $(FLAG_COMPILE_WARNINGS_AS_ERRORS)
     10 
     11 OPTIMIZE_FOR_PERFORMANCE_OVER_SIZE := true
     12 
     13 XCPPFLAGS += -DFALSE=false
     14 
     15 SRCDIR := ../../src
     16 INCSRCDIR := ../../include
     17 
     18 SRCS :=	ccrgb16toyuv420.cpp \
     19 	ccrgb24torgb16.cpp \
     20 	ccyuv422toyuv420.cpp \
     21 	cczoomrotation12.cpp \
     22 	cczoomrotation16.cpp \
     23 	cczoomrotation24.cpp \
     24 	cczoomrotation32.cpp \
     25 	cczoomrotationbase.cpp \
     26 	cpvvideoblend.cpp \
     27 	ccrgb24toyuv420.cpp \
     28 	ccrgb12toyuv420.cpp \
     29 	ccyuv420semiplnrtoyuv420plnr.cpp \
     30 	ccyuv420toyuv420semi.cpp
     31 
     32 HDRS :=  cczoomrotationbase.h \
     33 	cczoomrotation12.h \
     34 	cczoomrotation16.h \
     35 	cczoomrotation24.h \
     36 	cczoomrotation32.h \
     37 	ccrgb16toyuv420.h \
     38 	ccrgb24torgb16.h \
     39 	ccyuv422toyuv420.h \
     40 	colorconv_config.h \
     41 	pvvideoblend.h \
     42 	ccrgb24toyuv420.h \
     43 	ccrgb12toyuv420.h \
     44 	ccyuv420semitoyuv420.h \
     45 	ccyuv420toyuv420semi.h
     46 
     47 include $(MK)/library.mk
     48