📄 makefile.in
字号:
#
# Makefile for iLBC Codec Plugin
#
# Copyright (C) 2004 Post Increment, All Rights Reserved
#
# The contents of this file are subject to the Mozilla Public License
# Version 1.0 (the "License"); you may not use this file except in
# compliance with the License. You may obtain a copy of the License at
# http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS IS"
# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
# the License for the specific language governing rights and limitations
# under the License.
#
# The Original Code is Open H323 library.
#
# The Initial Developer of the Original Code is Post Increment
#
# Contributor(s): ______________________________________.
#
# $Log: Makefile.in,v $
# Revision 1.4 2004/08/22 04:20:20 csoutheren
# Added -fPIC to build commands to fix problems on 64 bit platforms
# Thanks to Klaus Kaempf
#
# Revision 1.3 2004/06/24 23:33:18 csoutheren
# Changed Makefiles to ensure all plugins have correct suffix
#
# Revision 1.2 2004/05/03 11:08:30 csoutheren
# Modified to allow plugins to be created on various platforms
#
# Revision 1.1 2004/04/29 14:48:02 csoutheren
# Reconfigured plugin makefiles per suggestions from Damien Sandras
# Changed install targets to use $(INSTALL)
#
# Revision 1.5 2004/04/27 09:59:27 csoutheren
# Updated codec specific Makefiles
#
# Revision 1.4 2004/04/09 12:24:19 csoutheren
# Renamed h323plugin.h to opalplugin.h, and modified everything else
# as required
#
# Revision 1.3 2004/04/04 12:57:50 csoutheren
# Updated Makefiles and fixed Linux problems
#
#
STDCCFLAGS += -fPIC
PREFIX=@INSTALLPREFIX@
exec_prefix = ${PREFIX}
LIBDIR=@LIBDIR@
CC=@CC@
CXX=@CXX@
LDSO=@LDSO@
ifndef PREFIX
PREFIX=/usr/local
endif
SONAME = ilbccodec
SRCDIR = ./iLBC
SRCS = ilbccodec.c $(SRCDIR)/anaFilter.c $(SRCDIR)/constants.c $(SRCDIR)/createCB.c $(SRCDIR)/doCPLC.c \
$(SRCDIR)/enhancer.c $(SRCDIR)/filter.c $(SRCDIR)/FrameClassify.c $(SRCDIR)/gainquant.c \
$(SRCDIR)/getCBvec.c $(SRCDIR)/helpfun.c $(SRCDIR)/hpInput.c $(SRCDIR)/hpOutput.c \
$(SRCDIR)/iCBConstruct.c $(SRCDIR)/iCBSearch.c $(SRCDIR)/iLBC_decode.c $(SRCDIR)/iLBC_encode.c \
$(SRCDIR)/LPCdecode.c $(SRCDIR)/LPCencode.c $(SRCDIR)/lsf.c $(SRCDIR)/packing.c \
$(SRCDIR)/StateConstructW.c $(SRCDIR)/StateSearchW.c $(SRCDIR)/syntFilter.c
OBJDIR = ./obj
vpath %.o $(OBJDIR)
vpath %.c $(SRCDIR)
$(OBJDIR)/%.o : %.c
@mkdir -p $(OBJDIR) >/dev/null 2>&1
$(CC) -g -c -I../../../include $(STDCCFLAGS) $(CCFLAGS) -o $@ $<
PLUGIN = ./ilbc_audio_pwplugin.so
OBJECTS = $(addprefix $(OBJDIR)/,$(patsubst %.c,%.o,$(notdir $(SRCS))))
$(PLUGIN): $(OBJECTS)
$(CC) $(LDSO)$(SONAME) -o $@ $^
install:
mkdir -p $(DESTDIR)$(LIBDIR)/pwlib/codecs/audio/
cp $(PLUGIN) $(DESTDIR)$(LIBDIR)/pwlib/codecs/audio/
uninstall:
rm -f $(DESTDIR)$(LIBDIR)/pwlib/codecs/audio/$(PLUGIN)
clean:
rm -f $(OBJECTS) $(PLUGIN)
###########################################
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -