aboutsummaryrefslogtreecommitdiffstats
path: root/res/libresample/Makefile.in
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2008-01-02 14:05:30 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2008-01-02 14:05:30 +0000
commit933ddf410aee42eac51dfd9f3d5e5c4a98efaf22 (patch)
treeb7166e1e0969a7109403e9f88178ff8e12022b68 /res/libresample/Makefile.in
parent5bdb7dc6b72e49a4e20c00ad0345baed6169cf99 (diff)
go back to including libresample in the main Asterisk binary, but this time including a small hack to ensure that it does get linked in (and also modify the strip_nonapi script to leave the resample_<foo> symbols alone)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@95816 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res/libresample/Makefile.in')
-rw-r--r--res/libresample/Makefile.in52
1 files changed, 0 insertions, 52 deletions
diff --git a/res/libresample/Makefile.in b/res/libresample/Makefile.in
deleted file mode 100644
index 8d17d19b4..000000000
--- a/res/libresample/Makefile.in
+++ /dev/null
@@ -1,52 +0,0 @@
-# Run configure to generate Makefile from Makefile.in on
-# any system supported by GNU autoconf. For all other
-# systems, use this file as a template to create a
-# working Makefile.
-
-CC = @CC@
-CFLAGS = @CFLAGS@ -Wall
-
-LIBS = @LIBS@ -lm
-
-AR = @AR@
-RANLIB = @RANLIB@
-
-OBJS = \
- src/resample.c.o \
- src/resamplesubs.c.o \
- src/filterkit.c.o
-
-TARGETS = @TARGETS@
-
-all: $(TARGETS)
-
-libresample.a: $(OBJS) Makefile
- $(AR) ruv libresample.a $(OBJS)
- ranlib libresample.a
-
-tests/testresample: libresample.a tests/testresample.c
- $(CC) -o tests/testresample \
- $(CFLAGS) tests/testresample.c \
- libresample.a $(LIBS)
-
-tests/compareresample: libresample.a tests/compareresample.c
- $(CC) -o tests/compareresample \
- $(CFLAGS) tests/compareresample.c \
- libresample.a -lsamplerate $(LIBS)
-
-tests/resample-sndfile: libresample.a tests/resample-sndfile.c
- $(CC) -o tests/resample-sndfile \
- $(CFLAGS) tests/resample-sndfile.c \
- libresample.a -lsndfile $(LIBS)
-
-clean:
- rm -f $(TARGETS) $(OBJS)
-
-distclean: clean
- rm -f Makefile
- rm -f config.status config.cache config.log src/config.h
- rm -f *~ src/*~ tests/*~ include/*~
-
-%.c.o: %.c Makefile include/libresample.h \
- src/resample_defs.h src/filterkit.h src/config.h
- $(CC) -c $(CFLAGS) $< -o $@