forked from Mirrors/freeswitch
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
14 lines
434 B
Makefile
14 lines
434 B
Makefile
AM_CFLAGS = -I./src/include -fPIC -O3 -Dsingle -funroll-loops -fomit-frame-pointer
|
|
AUTOMAKE_OPTS = gnu
|
|
NAME = libg7xx
|
|
lib_LTLIBRARIES = libg7xx.la
|
|
libg7xx_la_SOURCES = src/g711.c src/g722_decode.c src/g722_encode.c src/g726.c
|
|
|
|
libg7xx_la_CFLAGS = $(AM_CFLAGS)
|
|
libg7xx_la_LDFLAGS =
|
|
|
|
library_includedir = $(prefix)/include/g7xx
|
|
library_include_HEADERS = src/include/g7xx/g722.h src/include/g7xx/g711.h src/include/g7xx/g726.h
|
|
|
|
|