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.
sems/apps/mp3/Makefile

34 lines
775 B

plug_in_name = mp3
COREPATH ?=../../core
LAME_DIR = ./lame-3.96.1
module_ldflags = -lmp3lame
WITH_MPG123DECODER ?= yes
ifeq ($(WITH_MPG123DECODER), yes)
module_ldflags += -lmpg123
module_cflags += -DWITH_MPG123DECODER -D_FILE_OFFSET_BITS=64
endif
# if you want to build lame from source use these
# module_ldflags and module_extra_objs
#module_ldflags = -L$(LAME_DIR)/libmp3lame/.libs
#module_extra_objs = $(LAME_DIR)/libmp3lame/.libs/libmp3lame.a
#module_cflags = -I$(LAME_DIR)/include
# for mpg123 about the same applies
extra_clean =
include $(COREPATH)/plug-in/Makefile.audio_module
#.PHONY: clean_libmp3lame
#clean_libmp3lame:
# cd $(LAME_DIR); $(MAKE) clean
#
#$(LAME_DIR)/libmp3lame/.libs/libmp3lame.a:
# cd $(LAME_DIR); ./configure ; $(MAKE)