mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 11:58:52 +00:00
clean up, use make functions instead of subshells, remove unused stuff
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6449 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -16,15 +16,22 @@ FORMAT_LIBS=format_gsm.so format_wav.so \
|
||||
format_pcm_alaw.so format_h263.so format_g726.so format_ilbc.so \
|
||||
format_sln.so format_au.so
|
||||
FORMAT_LIBS+=format_jpeg.so
|
||||
|
||||
#
|
||||
# G723 simple frame is depricated
|
||||
# G723 simple frame is deprecated
|
||||
#
|
||||
FORMAT_LIBS+=format_g723.so
|
||||
|
||||
#
|
||||
# OGG/Vorbis format
|
||||
#
|
||||
FORMAT_LIBS+=$(shell if [ -f $(CROSS_COMPILE_TARGET)/usr/include/vorbis/codec.h ]; then echo "format_ogg_vorbis.so" ; fi)
|
||||
ifneq ($(wildcard $(CROSS_COMPILE_TARGET)/usr/include/vorbis/codec.h),)
|
||||
FORMAT_LIBS+=format_ogg_vorbis.so
|
||||
endif
|
||||
|
||||
ifeq ($(findstring BSD,${OSARCH}),BSD)
|
||||
CFLAGS+=-I$(CROSS_COMPILE_TARGET)/usr/local/include -L$(CROSS_COMPILE_TARGET)/usr/local/lib
|
||||
endif
|
||||
|
||||
GSMLIB=../codecs/gsm/lib/libgsm.a
|
||||
|
||||
@@ -39,7 +46,7 @@ clean:
|
||||
$(CC) $(SOLINK) -o $@ $<
|
||||
|
||||
ifneq ($(wildcard .depend),)
|
||||
include .depend
|
||||
include .depend
|
||||
endif
|
||||
|
||||
format_mp3.so : format_mp3.o
|
||||
|
Reference in New Issue
Block a user