freeswitch/libs/codec/g726/Makefile.am
Michael Jerris 50571597c5 Do not force use of "gmake" -- but propagate whichever command was used to start the top-level make. This way users on e.g.
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
2006-09-23 23:27:44 +00:00

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