blob: bb85f9cf443f0cd5d996371316c39d1f62578b57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
include $(top_srcdir)/misc/Makefile.common
AM_CPPFLAGS = -D_LARGEFILE64_SOURCE -I$(srcdir)/../libreal
noinst_LTLIBRARIES = librtsp.la
librtsp_la_SOURCES = \
rtsp.c \
rtsp_session.c
librtsp_la_CFLAGS = $(VISIBILITY_FLAG)
librtsp_la_LDFLAGS = -avoid-version -module
noinst_HEADERS = \
rtsp.h \
rtsp_session.h
|