mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-06 02:55:27 +00:00
50571597c5
Mac OS X won't have to create a special symlink to build, but can instead just use the command "gnumake" (as opposed to "make" og "gmake") Merged from tholo's branch http://svn.freeswitch.org/svn/freeswitch/branches/tholo rev 2796, thanks tholo. git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@2815 d0543943-73ff-0310-b7d9-9358b9ac24b2
29 lines
439 B
Makefile
29 lines
439 B
Makefile
EXTRA_DIST =
|
|
SUBDIRS =
|
|
AUTOMAKE_OPTS= gnu
|
|
NAME=libg726
|
|
|
|
AM_CC=gcc
|
|
AM_CFLAGS = -Wall -O3 -funroll-loops
|
|
AM_CPPFLAGS = $(AM_CFLAGS)
|
|
|
|
lib_LTLIBRARIES = libg726.la
|
|
libg726_la_SOURCES = src/g726_16.c \
|
|
src/g726_24.c \
|
|
src/g726_32.c \
|
|
src/g726_40.c \
|
|
src/g72x.c \
|
|
src/g711.c
|
|
|
|
libg726_la_CFLAGS = $(AM_CFLAGS)
|
|
libg726_la_LDFLAGS =
|
|
|
|
library_includedir = $(prefix)/include
|
|
library_include_HEADERS = src/g72x.h src/private.h src/g711.h
|
|
|
|
|
|
|
|
|
|
|
|
|