• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Get the current local path as the first operation
2LOCAL_PATH := $(call get_makefile_dir)
3
4# Clear out the variables used in the local makefiles
5include $(MK)/clear.mk
6
7TARGET := pvmediadatastruct
8
9XCXXFLAGS := $(FLAG_COMPILE_WARNINGS_AS_ERRORS)
10
11XINCDIRS += ../../../../fileformats/mp4/parser/include
12XINCDIRS += ../../../../pvmi/pvmf/include
13
14
15SRCDIR := ../../src
16INCSRCDIR := ../../src
17
18# compose final src list for actual build
19SRCS :=	media_clock_converter.cpp \
20	pv_gau.cpp \
21	access_unit.cpp \
22	access_unit_impl.cpp \
23	time_comparison_utils.cpp \
24	au_utils.cpp
25
26
27HDRS := access_unit.h \
28	access_unit_impl.h \
29	au_utils.h \
30	gau_object.h \
31	media_clock_converter.h \
32	time_comparison_utils.h \
33	pv_gau.h
34
35
36include $(MK)/library.mk
37
38