forked from Mirrors/freeswitch
21c5cf5d47
The latter is a well known automake variable, used to set (per-Makefile) automake options and supported since the beginning of time (= automake 1.4). The former is a made-up variable that doesn't really do anything. Signed-off-by: Stefan Knoblich <stkn@openisdn.net>
23 lines
528 B
Makefile
23 lines
528 B
Makefile
EXTRA_DIST =
|
|
SUBDIRS =
|
|
AUTOMAKE_OPTIONS = gnu
|
|
NAME=teletone
|
|
|
|
AM_CFLAGS = $(new_AM_CFLAGS) -I./src
|
|
AM_CPPFLAGS = $(AM_CFLAGS)
|
|
AM_LDFLAGS = -lm
|
|
|
|
lib_LTLIBRARIES = libteletone.la
|
|
libteletone_la_SOURCES = src/libteletone_generate.c src/libteletone_detect.c
|
|
libteletone_la_CFLAGS = $(AM_CFLAGS)
|
|
libteletone_la_LDFLAGS = -version-info 0:1:0
|
|
|
|
library_includedir = $(prefix)/include
|
|
library_include_HEADERS = src/libteletone.h src/libteletone_detect.h src/libteletone_generate.h
|
|
|
|
|
|
|
|
dox:
|
|
cd docs && doxygen $(PWD)/docs/Doxygen.conf
|
|
|