libisofs-legacy/Makefile.am

168 lines
3.8 KiB
Makefile
Raw Permalink Normal View History

2006-08-15 20:37:04 +00:00
pkgconfigdir=$(libdir)/pkgconfig
libincludedir=$(includedir)/libisofs
2006-08-15 20:37:04 +00:00
lib_LTLIBRARIES = libisofs/libisofs.la
2006-08-15 20:37:04 +00:00
## ========================================================================= ##
# Build libraries
2006-09-24 20:25:54 +00:00
2006-08-15 20:37:04 +00:00
libisofs_libisofs_la_LDFLAGS = \
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
libisofs_libisofs_la_SOURCES = \
2006-08-24 19:23:37 +00:00
libisofs/tree.h \
libisofs/tree.c \
libisofs/volume.h \
libisofs/volume.c \
libisofs/util.h \
libisofs/util.c \
libisofs/ecma119.c \
libisofs/ecma119.h \
libisofs/ecma119_tree.c \
libisofs/ecma119_tree.h \
libisofs/susp.h \
libisofs/susp.c \
libisofs/rockridge.h \
libisofs/rockridge.c \
libisofs/joliet.c \
libisofs/joliet.h \
libisofs/exclude.c \
libisofs/exclude.h \
libisofs/hash.h \
libisofs/hash.c \
libisofs/file.h \
2007-06-05 22:01:26 +00:00
libisofs/file.c \
libisofs/file_src.h \
libisofs/file_src.c \
2007-06-05 22:01:26 +00:00
libisofs/eltorito.h \
libisofs/eltorito.c \
libisofs/data_source.c \
libisofs/ecma119_read.h \
libisofs/ecma119_read.c \
libisofs/ecma119_read_rr.h \
libisofs/ecma119_read_rr.c \
libisofs/libiso_msgs.h \
libisofs/libiso_msgs.c \
libisofs/messages.h \
libisofs/messages.c
2006-08-15 20:37:04 +00:00
libinclude_HEADERS = \
libisofs/libisofs.h
## ========================================================================= ##
## Build test applications
noinst_PROGRAMS = \
test/iso \
test/isoread \
test/isoms \
test/isoadd \
test/isogrow
2006-08-15 20:37:04 +00:00
test_iso_CPPFLAGS = -Ilibisofs
test_iso_LDADD = $(libisofs_libisofs_la_OBJECTS) $(THREAD_LIBS)
test_iso_SOURCES = test/iso.c
test_isoread_CPPFLAGS = -Ilibisofs
test_isoread_LDADD = $(libisofs_libisofs_la_OBJECTS) $(THREAD_LIBS)
test_isoread_SOURCES = test/iso_read.c
test_isoms_CPPFLAGS = -Ilibisofs
test_isoms_LDADD = $(libisofs_libisofs_la_OBJECTS) $(THREAD_LIBS)
test_isoms_SOURCES = test/iso_ms.c
test_isoadd_CPPFLAGS = -Ilibisofs
test_isoadd_LDADD = $(libisofs_libisofs_la_OBJECTS) $(THREAD_LIBS)
test_isoadd_SOURCES = test/iso_add.c
test_isogrow_CPPFLAGS = -Ilibisofs -Ilibburn
test_isogrow_LDADD = $(libisofs_libisofs_la_OBJECTS) $(THREAD_LIBS) -lburn
test_isogrow_SOURCES = test/iso_grow.c
## Build unit test
check_PROGRAMS = \
test/test
test_test_CPPFLAGS = -Ilibisofs
test_test_LDADD = $(libisofs_libisofs_la_OBJECTS) $(THREAD_LIBS) -lcunit
test_test_LDFLAGS = -L.. -lm
test_test_SOURCES = \
test/test_exclude.c \
test/test_tree.c \
test/test_ecma119_tree.c \
test/test_file_hashtable.c \
test/test_util.c \
test/test_volume.c \
test/test_data_source.c \
test/test_read.c \
test/test.c
2006-08-18 16:58:31 +00:00
2006-08-15 20:37:04 +00:00
## ========================================================================= ##
## Build documentation (You need Doxygen for this to work)
webhost = http://libburn-api.pykix.org
webpath = /
docdir = $(DESTDIR)$(prefix)/share/doc/$(PACKAGE)-$(VERSION)
2006-08-15 20:37:04 +00:00
doc: doc/html
2006-08-15 20:37:04 +00:00
2006-09-20 20:08:02 +00:00
doc/html: doc/doxygen.conf
if [ -f ./doc/doc.lock ]; then \
$(RM) -r doc/html; \
doxygen doc/doxygen.conf; \
fi
2006-08-15 20:37:04 +00:00
doc-upload: doc/html
scp -r $</* $(webhost):$(webpath)
2006-09-20 20:08:02 +00:00
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)
2006-08-15 20:37:04 +00:00
## ========================================================================= ##
# Indent source files
indent_files = \
$(libisofs_libisofs_la_SOURCES) \
2006-09-21 07:50:02 +00:00
$(test_iso_SOURCES)
2006-08-15 20:37:04 +00:00
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 = \
libisofs-5.pc
2006-08-15 20:37:04 +00:00
EXTRA_DIST = \
libisofs-5.pc.in \
2006-08-15 20:37:04 +00:00
version.h.in \
doc/comments \
2006-08-15 20:37:04 +00:00
doc/doxygen.conf.in \
README \
2006-09-18 14:41:43 +00:00
AUTHORS \
2006-09-21 07:50:02 +00:00
CONTRIBUTORS \
2006-09-18 14:41:43 +00:00
COPYRIGHT \
COPYING \
NEWS \
INSTALL \
ChangeLog