Move C++ files to C++ directory. Add mmc{1,2} checking to list of C++

programs compiled.
This commit is contained in:
rocky
2005-02-19 11:42:18 +00:00
parent 2d41f7dc42
commit 59865cec72
10 changed files with 381 additions and 29 deletions

View File

@@ -1,4 +1,4 @@
# $Id: Makefile.am,v 1.18 2005/02/09 02:50:47 rocky Exp $
# $Id: Makefile.am,v 1.19 2005/02/19 11:42:18 rocky Exp $
#
# Copyright (C) 2003, 2004, 2005 Rocky Bernstein <rocky@panix.com>
#
@@ -20,14 +20,11 @@
# Things to regression testing
####################################################
#
if DISABLE_CPP
noinst_PROGRAMS = cdtext device drives iso1 iso2 iso3 isofuzzy mmc1 mmc2 \
paranoia paranoia2 tracks sample3 sample4
else
noinst_PROGRAMS = cdtext device drives iso1 iso2 iso3 isofuzzy mmc1 mmc2 \
paranoia paranoia2 tracks sample3 sample4 \
iso1cpp iso2cpp iso3cpp
if !DISABLE_CPP
SUBDIRS = C++
endif
noinst_PROGRAMS = cdtext device drives iso1 iso2 iso3 isofuzzy mmc1 mmc2 \
mmc4 paranoia paranoia2 tracks sample3 sample4
INCLUDES = -I$(top_srcdir) $(LIBCDIO_CFLAGS)
@@ -45,17 +42,9 @@ iso2_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
iso3_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
isofuzzy_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
if !DISABLE_CPP
iso1cpp_SOURCES = iso1cpp.cpp
iso1cpp_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
iso2cpp_SOURCES = iso2cpp.cpp
iso2cpp_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
iso3cpp_SOURCES = iso3cpp.cpp
iso3cpp_LDADD = $(LIBISO9660_LIBS) $(LIBCDIO_LIBS) $(LIBICONV)
endif
mmc1_LDADD = $(LIBCDIO_LIBS)
mmc2_LDADD = $(LIBCDIO_LIBS)
mmc4_LDADD = $(LIBCDIO_LIBS)
sample3_LDADD = $(LIBCDIO_LIBS)
sample4_LDADD = $(LIBCDIO_LIBS)