This commit is contained in:
rocky
2006-04-15 16:18:33 +00:00
parent 3ccf07b429
commit f4438d5de5
5 changed files with 23 additions and 23 deletions

View File

@@ -1,4 +1,4 @@
# $Id: Makefile.am,v 1.9 2006/04/15 16:16:05 rocky Exp $ # $Id: Makefile.am,v 1.10 2006/04/15 16:18:33 rocky Exp $
# #
# Copyright (C) 2005, 2006 Rocky Bernstein <rocky@cpan.org> # Copyright (C) 2005, 2006 Rocky Bernstein <rocky@cpan.org>
# #
@@ -47,12 +47,12 @@ paranoia2_LDADD = $(LIBCDIO_PARANOIA_LIBS) $(LIBCDIO_CDDA_LIBS) \
$(LIBCDIO_LIBS) $(LIBCDIO_LIBS)
endif endif
isolist_SOURCES = isolist.cpp
isolist_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
isofile_SOURCES = isofile.cpp isofile_SOURCES = isofile.cpp
isofile_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV) isofile_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
isofile2_SOURCES = isofile2.cpp isofile2_SOURCES = isofile2.cpp
isofile2_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV) isofile2_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
isolist_SOURCES = isolist.cpp
isolist_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
mmc1_SOURCES = mmc1.cpp mmc1_SOURCES = mmc1.cpp
mmc1_DEPENDENCIES = $(LIBCDIO_DEPS) mmc1_DEPENDENCIES = $(LIBCDIO_DEPS)

View File

@@ -1,4 +1,4 @@
# $Id: Makefile.am,v 1.10 2006/04/15 15:45:25 rocky Exp $ # $Id: Makefile.am,v 1.11 2006/04/15 16:18:33 rocky Exp $
# #
# Copyright (C) 2005, 2006 Rocky Bernstein <rocky@panix.com> # Copyright (C) 2005, 2006 Rocky Bernstein <rocky@panix.com>
# #
@@ -21,7 +21,7 @@
############################################################ ############################################################
# #
noinst_PROGRAMS = cdtext device drives eject \ noinst_PROGRAMS = cdtext device drives eject \
isolist isofile isofile2 iso4 mmc1 mmc2 tracks isofile isofile2 isolist iso4 mmc1 mmc2 tracks
INCLUDES = -I$(top_srcdir)/include $(LIBCDIO_CFLAGS) INCLUDES = -I$(top_srcdir)/include $(LIBCDIO_CFLAGS)
@@ -41,10 +41,6 @@ eject_SOURCES = eject.cpp
eject_DEPENDENCIES = $(LIBCDIO_DEPS) eject_DEPENDENCIES = $(LIBCDIO_DEPS)
eject_LDADD = $(LIBCDIOPP_LIBS) $(LIBCDIO_LIBS) eject_LDADD = $(LIBCDIOPP_LIBS) $(LIBCDIO_LIBS)
isolist_SOURCES = isolist.cpp
isolist_LDADD = $(LIBISO9660PP_LIBS) $(LIBISO9660_LIBS) \
$(LIBCDIOPP_LIBS) $(LIBICONV)
isofile_SOURCES = isofile.cpp isofile_SOURCES = isofile.cpp
isofile_LDADD = $(LIBISO9660PP_LIBS) $(LIBISO9660_LIBS) \ isofile_LDADD = $(LIBISO9660PP_LIBS) $(LIBISO9660_LIBS) \
$(LIBCDIOPP_LIBS) $(LIBICONV) $(LIBCDIOPP_LIBS) $(LIBICONV)
@@ -53,6 +49,10 @@ isofile2_SOURCES = isofile2.cpp
isofile2_LDADD = $(LIBISO9660PP_LIBS) $(LIBISO9660_LIBS) \ isofile2_LDADD = $(LIBISO9660PP_LIBS) $(LIBISO9660_LIBS) \
$(LIBCDIOPP_LIBS) $(LIBICONV) $(LIBCDIOPP_LIBS) $(LIBICONV)
isolist_SOURCES = isolist.cpp
isolist_LDADD = $(LIBISO9660PP_LIBS) $(LIBISO9660_LIBS) \
$(LIBCDIOPP_LIBS) $(LIBICONV)
iso4_SOURCES = iso4.cpp iso4_SOURCES = iso4.cpp
iso4_LDADD = $(LIBISO9660PP_LIBS) $(LIBISO9660_LIBS) \ iso4_LDADD = $(LIBISO9660PP_LIBS) $(LIBISO9660_LIBS) \
$(LIBCDIOPP_LIBS) $(LIBICONV) $(LIBCDIOPP_LIBS) $(LIBICONV)

View File

@@ -1,4 +1,4 @@
$Id: README,v 1.3 2006/04/15 15:47:05 rocky Exp $ $Id: README,v 1.4 2006/04/15 16:22:49 rocky Exp $
This directory contains some simple C++ examples of the use of the libcdio This directory contains some simple C++ examples of the use of the libcdio
library. library.
@@ -11,16 +11,16 @@ device.cpp: A program to show drivers installed and what the default
eject.cpp: A program eject a CD from a CD-ROM drive and then close the door eject.cpp: A program eject a CD from a CD-ROM drive and then close the door
again. again.
isolist.cpp: A program to show using libiso9660 to list files in a
directory of an ISO-9660 image and give basic iso9660
information.
isofile.cpp: A program to show using libiso9660 to extract a file from an isofile.cpp: A program to show using libiso9660 to extract a file from an
ISO-9660 image. ISO-9660 image.
isofile2.cpp: A program to show using libiso9660 to extract a file isofile2.cpp: A program to show using libiso9660 to extract a file
from a CDRWIN cue/bin CD image. from a CDRWIN cue/bin CD image.
isolist.cpp: A program to show using libiso9660 to list files in a
directory of an ISO-9660 image and give basic iso9660
information.
mmc1.cpp: A program to show issuing a simple MMC command (INQUIRY). mmc1.cpp: A program to show issuing a simple MMC command (INQUIRY).
mmc2.cpp: A more involved MMC command to list features from mmc2.cpp: A more involved MMC command to list features from

View File

@@ -1,4 +1,4 @@
# $Id: Makefile.am,v 1.34 2006/04/15 15:45:25 rocky Exp $ # $Id: Makefile.am,v 1.35 2006/04/15 16:18:33 rocky Exp $
# #
# Copyright (C) 2003, 2004, 2005 Rocky Bernstein <rocky@panix.com> # Copyright (C) 2003, 2004, 2005 Rocky Bernstein <rocky@panix.com>
# #
@@ -27,7 +27,7 @@ if BUILD_CD_PARANOIA
paranoia_progs = paranoia paranoia2 paranoia_progs = paranoia paranoia2
endif endif
noinst_PROGRAMS = audio cdchange cdtext device drives eject \ noinst_PROGRAMS = audio cdchange cdtext device drives eject \
isolist isofile isofile2 isofuzzy \ isofile isofile2 isofuzzy isolist \
mmc1 mmc2 mmc2a $(paranoia_progs) tracks \ mmc1 mmc2 mmc2a $(paranoia_progs) tracks \
sample3 sample4 udf1 udf2 sample3 sample4 udf1 udf2
@@ -56,10 +56,10 @@ paranoia_LDADD = $(LIBCDIO_PARANOIA_LIBS) $(LIBCDIO_CDDA_LIBS) $(LIBCDIO_LIBS)
paranoia2_LDADD = $(LIBCDIO_PARANOIA_LIBS) $(LIBCDIO_CDDA_LIBS) $(LIBCDIO_LIBS) paranoia2_LDADD = $(LIBCDIO_PARANOIA_LIBS) $(LIBCDIO_CDDA_LIBS) $(LIBCDIO_LIBS)
endif endif
isolist_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
isofile2_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
isofile_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV) isofile_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
isofile2_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
isofuzzy_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV) isofuzzy_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
isolist_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
mmc1_DEPENDENCIES = $(LIBCDIO_DEPS) mmc1_DEPENDENCIES = $(LIBCDIO_DEPS)
mmc1_LDADD = $(LIBCDIO_LIBS) mmc1_LDADD = $(LIBCDIO_LIBS)

View File

@@ -1,4 +1,4 @@
$Id: README,v 1.25 2006/04/15 15:45:25 rocky Exp $ $Id: README,v 1.26 2006/04/15 16:22:49 rocky Exp $
This directory contains some simple examples of the use of the libcdio This directory contains some simple examples of the use of the libcdio
library. library.
@@ -29,10 +29,6 @@ drives.c: A program to show drivers installed and what the default
eject.c: A program eject a CD from a CD-ROM drive and then close the door eject.c: A program eject a CD from a CD-ROM drive and then close the door
again. again.
isolist.c: A program to show using libiso9660 to list files in a
directory of an ISO-9660 image and give basic iso9660
information.
isofile.c: A program to show using libiso9660 to extract a file from an isofile.c: A program to show using libiso9660 to extract a file from an
ISO-9660 image. ISO-9660 image.
@@ -41,6 +37,10 @@ isofile2.c: A program to show using libiso9660 to extract a file
isofuzzy.c : A program showing fuzzy ISO-9660 detection/reading. isofuzzy.c : A program showing fuzzy ISO-9660 detection/reading.
isolist.c: A program to show using libiso9660 to list files in a
directory of an ISO-9660 image and give basic iso9660
information.
mmc1.c: A program to show issuing a simple MMC command (INQUIRY). mmc1.c: A program to show issuing a simple MMC command (INQUIRY).
mmc2.c: A more involved MMC command to list features from mmc2.c: A more involved MMC command to list features from