2008-04-12 02:07:16 +02:00
|
|
|
# Copyright (C) Lumiera.org
|
|
|
|
|
# 2008, Christian Thaeter <ct@pipapo.org>
|
|
|
|
|
#
|
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
|
# modify it under the terms of the GNU General Public License as
|
|
|
|
|
# published by the Free Software Foundation; either version 2 of the
|
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
|
#
|
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
2008-12-17 00:39:40 +01:00
|
|
|
liblumierabackend_la_srcdir = $(top_srcdir)/src/backend
|
|
|
|
|
lib_LTLIBRARIES += liblumierabackend.la
|
2008-04-12 02:07:16 +02:00
|
|
|
|
2008-12-17 00:39:40 +01:00
|
|
|
liblumierabackend_la_CPPFLAGS = $(AM_CPPFLAGS)
|
2010-01-17 15:48:30 +01:00
|
|
|
liblumierabackend_la_CFLAGS = $(AM_CFLAGS) $(LUMIERA_BACKEND_CFLAGS) -std=gnu99 -Wextra -Wall -Werror
|
|
|
|
|
liblumierabackend_la_LIBADD = $(LUMIERA_BACKEND_LIBS) liblumiera.la
|
2008-04-12 02:07:16 +02:00
|
|
|
|
2008-12-17 00:39:40 +01:00
|
|
|
liblumierabackend_la_SOURCES = \
|
|
|
|
|
$(liblumierabackend_la_srcdir)/mediaaccessfacade.cpp \
|
|
|
|
|
$(liblumierabackend_la_srcdir)/backend.c \
|
2009-01-16 02:18:58 +01:00
|
|
|
$(liblumierabackend_la_srcdir)/threads.c \
|
2009-11-23 01:55:08 +01:00
|
|
|
$(liblumierabackend_la_srcdir)/threadpool.c \
|
2008-12-17 00:39:40 +01:00
|
|
|
$(liblumierabackend_la_srcdir)/file.c \
|
|
|
|
|
$(liblumierabackend_la_srcdir)/filehandle.c \
|
|
|
|
|
$(liblumierabackend_la_srcdir)/filedescriptor.c \
|
2009-01-28 04:56:01 +01:00
|
|
|
$(liblumierabackend_la_srcdir)/filehandlecache.c \
|
2008-12-17 00:39:40 +01:00
|
|
|
$(liblumierabackend_la_srcdir)/mmap.c \
|
|
|
|
|
$(liblumierabackend_la_srcdir)/mmapings.c \
|
|
|
|
|
$(liblumierabackend_la_srcdir)/mmapcache.c \
|
2010-01-24 15:48:48 +01:00
|
|
|
$(liblumierabackend_la_srcdir)/threadpool-init.cpp \
|
2008-12-17 00:39:40 +01:00
|
|
|
$(liblumierabackend_la_srcdir)/enginefacade.cpp \
|
|
|
|
|
$(liblumierabackend_la_srcdir)/scriptrunnerfacade.cpp \
|
|
|
|
|
$(liblumierabackend_la_srcdir)/netnodefacade.cpp
|
2008-12-16 19:54:48 +01:00
|
|
|
|
2008-04-12 02:07:16 +02:00
|
|
|
|
2008-03-30 04:31:32 +02:00
|
|
|
noinst_HEADERS += \
|
2008-12-17 00:39:40 +01:00
|
|
|
$(liblumierabackend_la_srcdir)/backend.h \
|
2009-01-16 02:18:58 +01:00
|
|
|
$(liblumierabackend_la_srcdir)/threads.h \
|
2009-11-23 01:55:08 +01:00
|
|
|
$(liblumierabackend_la_srcdir)/threadpool.h \
|
2008-12-17 00:39:40 +01:00
|
|
|
$(liblumierabackend_la_srcdir)/file.h \
|
|
|
|
|
$(liblumierabackend_la_srcdir)/filehandle.h \
|
|
|
|
|
$(liblumierabackend_la_srcdir)/filedescriptor.h \
|
|
|
|
|
$(liblumierabackend_la_srcdir)/filehandlecache.h \
|
2008-12-20 16:03:24 +01:00
|
|
|
$(liblumierabackend_la_srcdir)/mmap.h \
|
|
|
|
|
$(liblumierabackend_la_srcdir)/mmapings.h \
|
|
|
|
|
$(liblumierabackend_la_srcdir)/mmapcache.h
|
2009-01-16 02:18:58 +01:00
|
|
|
|