1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
#
# MusicBrainz -- The Internet music metadatabase
#
# Copyright (C) 2000 Robert Kaye
#
# This library 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.
#
# This library 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 this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# $Id: Makefile.am,v 1.18 2001/10/07 01:06:16 robert Exp $
#
INCLUDES = -I$(top_srcdir)/lib
noinst_PROGRAMS = c_example cpp_example cmd findartist gettrack cdlookup gettrm submittrm getalbum
c_example_SOURCES = c_example.c
c_example_LDADD = $(top_builddir)/lib/libmusicbrainz.la -lstdc++ -lm
cpp_example_SOURCES = cpp_example.cpp
cpp_example_LDADD = $(top_builddir)/lib/libmusicbrainz.la -lstdc++ -lm
cmd_SOURCES = cmd.cpp
cmd_LDADD = $(top_builddir)/lib/libmusicbrainz.la -lstdc++ -lm
findartist_SOURCES = findartist.c
findartist_LDADD = $(top_builddir)/lib/libmusicbrainz.la -lstdc++ -lm
gettrack_SOURCES = gettrack.c
gettrack_LDADD = $(top_builddir)/lib/libmusicbrainz.la -lstdc++ -lm
gettrm_SOURCES = gettrm.c
gettrm_LDADD = $(top_builddir)/lib/libmusicbrainz.la -lstdc++ -lm
cdlookup_SOURCES = cdlookup.c
cdlookup_LDADD = $(top_builddir)/lib/libmusicbrainz.la -lstdc++ -lm
submittrm_SOURCES = submittrm.c
submittrm_LDADD = $(top_builddir)/lib/libmusicbrainz.la -lstdc++ -lm
getalbum_SOURCES = getalbum.c
getalbum_LDADD = $(top_builddir)/lib/libmusicbrainz.la -lstdc++ -lm
|