You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
181 lines
4.1 KiB
181 lines
4.1 KiB
pkgconfigdir=$(libdir)/pkgconfig |
|
libincludedir=$(includedir)/libisoburn |
|
|
|
lib_LTLIBRARIES = src/libisoburn.la |
|
|
|
## ========================================================================= ## |
|
|
|
# Build libraries |
|
src_libisoburn_la_LDFLAGS = \ |
|
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) |
|
src_libisoburn_la_SOURCES = \ |
|
src/burn_wrap.c \ |
|
src/data_source.c \ |
|
src/isoburn.c \ |
|
src/isoburn.h \ |
|
src/isofs_wrap.c \ |
|
src/libisoburn.h \ |
|
libburn/crc.h \ |
|
libburn/debug.c \ |
|
libburn/debug.h \ |
|
libburn/drive.c \ |
|
libburn/drive.h \ |
|
libburn/error.h \ |
|
libburn/file.c \ |
|
libburn/file.h \ |
|
libburn/init.c \ |
|
libburn/init.h \ |
|
libburn/lec.c \ |
|
libburn/lec.h \ |
|
libburn/libburn.h \ |
|
libburn/libdax_audioxtr.h \ |
|
libburn/libdax_audioxtr.c \ |
|
libburn/libdax_msgs.h \ |
|
libburn/libdax_msgs.c \ |
|
libburn/mmc.c \ |
|
libburn/mmc.h \ |
|
libburn/null.c \ |
|
libburn/null.h \ |
|
libburn/options.c \ |
|
libburn/options.h \ |
|
libburn/os.h \ |
|
libburn/read.c \ |
|
libburn/read.h \ |
|
libburn/sbc.c \ |
|
libburn/sbc.h \ |
|
libburn/sector.c \ |
|
libburn/sector.h \ |
|
libburn/sg.c \ |
|
libburn/sg.h \ |
|
libburn/source.h \ |
|
libburn/source.c \ |
|
libburn/spc.c \ |
|
libburn/spc.h \ |
|
libburn/structure.c \ |
|
libburn/structure.h \ |
|
libburn/toc.c \ |
|
libburn/toc.h \ |
|
libburn/transport.h \ |
|
libburn/util.c \ |
|
libburn/util.h \ |
|
libburn/write.c \ |
|
libburn/write.h \ |
|
version.h |
|
|
|
## libburn/sg-@ARCH@.c \ |
|
|
|
libinclude_HEADERS = \ |
|
libburn/libburn.h |
|
|
|
## ========================================================================= ## |
|
|
|
## Build test applications |
|
noinst_PROGRAMS = \ |
|
test/libburner \ |
|
test/telltoc \ |
|
test/dewav \ |
|
test/fake_au \ |
|
test/poll \ |
|
test/structest |
|
|
|
bin_PROGRAMS = \ |
|
cdrskin/cdrskin |
|
|
|
test_libburner_CPPFLAGS = -Ilibburn |
|
test_libburner_LDADD = $(libburn_libburn_la_OBJECTS) $(THREAD_LIBS) |
|
test_libburner_SOURCES = test/libburner.c |
|
test_telltoc_CPPFLAGS = -Ilibburn |
|
test_telltoc_LDADD = $(libburn_libburn_la_OBJECTS) $(THREAD_LIBS) |
|
test_telltoc_SOURCES = test/telltoc.c |
|
test_dewav_CPPFLAGS = -Ilibburn |
|
test_dewav_LDADD = $(libburn_libburn_la_OBJECTS) $(THREAD_LIBS) |
|
test_dewav_SOURCES = test/dewav.c |
|
test_fake_au_CPPFLAGS = |
|
test_fake_au_LDADD = |
|
test_fake_au_SOURCES = test/fake_au.c |
|
test_poll_CPPFLAGS = -Ilibburn |
|
test_poll_LDADD = $(libburn_libburn_la_OBJECTS) $(THREAD_LIBS) |
|
test_poll_SOURCES = test/poll.c |
|
test_structest_CPPFLAGS = -Ilibburn |
|
test_structest_LDADD = $(libburn_libburn_la_OBJECTS) $(THREAD_LIBS) |
|
test_structest_SOURCES = test/structest.c |
|
|
|
## cdrskin construction site - ts A60816 - A70720 |
|
cdrskin_cdrskin_CPPFLAGS = -Ilibburn |
|
cdrskin_cdrskin_CFLAGS = -DCdrskin_libburn_0_3_9 |
|
cdrskin_cdrskin_LDADD = $(libburn_libburn_la_OBJECTS) $(THREAD_LIBS) |
|
cdrskin_cdrskin_SOURCES = cdrskin/cdrskin.c cdrskin/cdrfifo.c cdrskin/cdrfifo.h cdrskin/cdrskin_timestamp.h |
|
## |
|
## Open questions: how to compute $timestamp and express -DX="$timestamp" |
|
## |
|
|
|
|
|
|
|
## ========================================================================= ## |
|
|
|
## Build documentation (You need Doxygen for this to work) |
|
webhost = http://libburn-api.pykix.org |
|
webpath = / |
|
docdir = $(DESTDIR)$(prefix)/share/doc/$(PACKAGE)-$(VERSION) |
|
|
|
doc: doc/html |
|
|
|
doc/html: doc/doxygen.conf |
|
if [ -f ./doc/doc.lock ]; then \ |
|
$(RM) -r doc/html; \ |
|
doxygen doc/doxygen.conf; \ |
|
fi |
|
|
|
doc-upload: doc/html |
|
scp -r $</* $(webhost):$(webpath) |
|
|
|
all: doc |
|
|
|
install-data-local: |
|
if [ -f ./doc/doc.lock ]; then \ |
|
$(mkinstalldirs) $(docdir)/html; \ |
|
$(INSTALL_DATA) doc/html/* $(docdir)/html; \ |
|
fi |
|
|
|
uninstall-local: |
|
rm -rf $(docdir) |
|
|
|
## ========================================================================= ## |
|
|
|
# Indent source files |
|
indent_files = \ |
|
$(libburn_libburn_la_SOURCES) \ |
|
$(test_poll_SOURCES) \ |
|
$(test_structest_SOURCES) |
|
|
|
|
|
indent: $(indent_files) |
|
indent -bad -bap -nbbb -nbbo -nbc -bli0 -br -bls \ |
|
-cdw -ce -cli0 -ncs -nbfda -i8 -l79 -lc79 \ |
|
-lp -saf -sai -nprs -npsl -saw -sob -ss -ut \ |
|
-sbi0 -nsc -ts8 -npcs -ncdb -fca \ |
|
$^ |
|
|
|
.PHONY: indent |
|
|
|
## ========================================================================= ## |
|
|
|
# Extra things |
|
nodist_pkgconfig_DATA = \ |
|
libisoburn.pc |
|
|
|
|
|
EXTRA_DIST = \ |
|
libisoburn.pc.in \ |
|
version.h.in \ |
|
doc/comments \ |
|
doc/doxygen.conf.in \ |
|
README \ |
|
AUTHORS \ |
|
CONTRIBUTORS \ |
|
COPYRIGHT \ |
|
COPYING \ |
|
NEWS \ |
|
ChangeLog \ |
|
INSTALL |
|
|
|
|