You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
893 B
24 lines
893 B
# -----------------------------------------------------------------------------
|
|
# Common definitons
|
|
# -----------------------------------------------------------------------------
|
|
|
|
AM_CFLAGS = -g -O3
|
|
AM_CFLAGS += -Werror
|
|
|
|
AM_CPPFLAGS = -D_ANDROID_
|
|
AM_CPPFLAGS += -DHAVE_ANDROID_OS
|
|
AM_CPPFLAGS += -I$(top_srcdir)/mm-video-v4l2/vidc/common/inc
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Make the Shared library (libhypv_intercept)
|
|
# -----------------------------------------------------------------------------
|
|
h_sources = hypv_intercept.h
|
|
c_sources = hypv_intercept.cpp
|
|
|
|
include_HEADERS = $(h_source)
|
|
lib_LTLIBRARIES = libhypv_intercept.la
|
|
libhypv_intercept_la_SOURCES = $(c_sources)
|
|
libhypv_intercept_la_CFLAGS = $(AM_CFLAGS) -fPIC
|
|
libhypv_intercept_la_CPPFLAGS = $(AM_CPPFLAGS)
|
|
libhypv_intercept_la_LDFLAGS = -shared -llog -ldl
|