2005-09-15 06:36:01 +00:00
|
|
|
# $Id: Makefile.am,v 1.24 2005/09/15 06:36:01 rocky Exp $
|
2003-09-28 22:11:00 +00:00
|
|
|
#
|
2005-01-22 03:41:50 +00:00
|
|
|
# Copyright (C) 2003, 2004, 2005 Rocky Bernstein <rocky@panix.com>
|
2003-09-28 22:11:00 +00:00
|
|
|
#
|
|
|
|
|
# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
#
|
|
|
|
|
####################################################
|
2005-04-30 02:04:29 +00:00
|
|
|
# Sample programs
|
2003-09-28 22:11:00 +00:00
|
|
|
####################################################
|
|
|
|
|
#
|
2005-09-15 06:36:01 +00:00
|
|
|
if ENABLE_CPP
|
2005-02-19 11:42:18 +00:00
|
|
|
SUBDIRS = C++
|
2004-11-22 01:03:52 +00:00
|
|
|
endif
|
2005-03-15 04:17:05 +00:00
|
|
|
noinst_PROGRAMS = audio cdtext device drives iso1 iso2 iso3 isofuzzy \
|
2005-04-30 09:42:37 +00:00
|
|
|
mmc1 mmc2 paranoia paranoia2 tracks \
|
|
|
|
|
sample3 sample4
|
2003-09-28 22:11:00 +00:00
|
|
|
|
|
|
|
|
INCLUDES = -I$(top_srcdir) $(LIBCDIO_CFLAGS)
|
|
|
|
|
|
2005-03-15 04:17:05 +00:00
|
|
|
audio_LDADD = $(LIBCDIO_LIBS)
|
|
|
|
|
|
2004-10-10 00:21:08 +00:00
|
|
|
cdtext_LDADD = $(LIBCDIO_LIBS)
|
|
|
|
|
|
2005-02-06 15:09:10 +00:00
|
|
|
device_LDADD = $(LIBCDIO_LIBS)
|
|
|
|
|
|
2004-10-10 00:21:08 +00:00
|
|
|
drives_LDADD = $(LIBCDIO_LIBS)
|
|
|
|
|
|
2005-02-09 02:50:46 +00:00
|
|
|
paranoia_LDADD = $(LIBCDIO_PARANOIA_LIBS) $(LIBCDIO_CDDA_LIBS) $(LIBCDIO_LIBS)
|
2005-01-22 03:41:50 +00:00
|
|
|
paranoia2_LDADD = $(LIBCDIO_PARANOIA_LIBS) $(LIBCDIO_CDDA_LIBS) $(LIBCDIO_LIBS)
|
2005-01-12 04:36:57 +00:00
|
|
|
|
2005-02-09 02:50:46 +00:00
|
|
|
iso1_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
|
|
|
|
|
iso2_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
|
|
|
|
|
iso3_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
|
|
|
|
|
isofuzzy_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
|
2004-10-10 00:21:08 +00:00
|
|
|
|
2005-02-04 23:12:16 +00:00
|
|
|
mmc1_LDADD = $(LIBCDIO_LIBS)
|
|
|
|
|
mmc2_LDADD = $(LIBCDIO_LIBS)
|
2004-10-10 00:21:08 +00:00
|
|
|
|
2003-09-28 22:11:00 +00:00
|
|
|
sample3_LDADD = $(LIBCDIO_LIBS)
|
|
|
|
|
sample4_LDADD = $(LIBCDIO_LIBS)
|
2004-10-10 00:21:08 +00:00
|
|
|
|
|
|
|
|
tracks_LDADD = $(LIBCDIO_LIBS)
|
2004-11-22 01:03:52 +00:00
|
|
|
|
|
|
|
|
# iso programs create file "copying"
|
|
|
|
|
MOSTLYCLEANFILES = copying
|