• 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 := pvmp3ff
8
9
10XCXXFLAGS += $(FLAG_COMPILE_WARNINGS_AS_ERRORS)
11
12
13
14
15
16
17SRCDIR := ../../src
18INCSRCDIR := ../../include
19
20SRCS := \
21	imp3ff.cpp \
22	mp3fileio.cpp \
23	mp3parser.cpp \
24	mp3utils.cpp
25
26HDRS := \
27	imp3ff.h \
28	mp3fileio.h \
29	mp3parser.h \
30	mp3utils.h
31
32
33include $(MK)/library.mk
34