• 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 := pvid3parcom
8
9XCXXFLAGS += $(FLAG_COMPILE_WARNINGS_AS_ERRORS)
10
11SRCDIR := ../../src
12INCSRCDIR := ../../include
13
14SRCS := pv_id3_parcom.cpp
15
16HDRS := pv_id3_parcom.h \
17       pv_id3_parcom_types.h \
18       pv_id3_parcom_constants.h
19
20
21include $(MK)/library.mk
22