From 6a75b780762a8695a83e0e94e6fcbce4d2f73573 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 27 May 2008 00:30:25 +0000 Subject: autoconfization git-svn-id: file:///home/lennart/svn/public/libcanberra/trunk@13 01b60673-d06a-42c0-afdd-89cb8e0f78ac --- src/Makefile.am | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 src/Makefile.am (limited to 'src/Makefile.am') diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..281738e --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,58 @@ +# $Id$ +# +# This file is part of libcanberra. +# +# Copyright 2008 Lennart Poettering +# +# libcanberra is free software; you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License as +# published by the Free Software Foundation, either version 2.1 of the +# License, or (at your option) any later version. +# +# libcanberra 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 +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with libcanberra. If not, If not, see +# . + +AM_CFLAGS = $(PTHREAD_CFLAGS) +AM_CXXFLAGS = $(PTHREAD_CFLAGS) +AM_LIBADD = $(PTHREAD_LIBS) +AM_LDADD = $(PTHREAD_LIBS) + +lib_LTLIBRARIES = \ + libcanberra.la + +noinst_PROGRAMS = \ + test-canberra + +libcanberra_la_SOURCES = \ + canberra.h \ + common.c common.h \ + mutex-posix.c mutex.h \ + proplist.c proplist.h \ + driver.h \ + pulse.c \ + read-sound-file.c read-sound-file.h \ + read-vorbis.c read-vorbis.h \ + read-wav.c read-wav.h \ + sound-theme-spec.c sound-theme-spec.h \ + llist.h \ + macro.h \ + malloc.h +libcanberra_la_LIBADD = \ + $(PULSE_LIBS) \ + $(VORBIS_LIBS) +libcanberra_la_CFLAGS = \ + $(AM_CFLAGS) \ + $(PULSE_CFLAGS) \ + $(VORBIS_CFLAGS) + +test_canberra_SOURCES = \ + test-canberra.c +test_canberra_LDADD = \ + $(AM_LDADD) \ + libcanberra.la -- cgit