libisoburn/Makefile.am

105 lines
2.3 KiB
Makefile
Raw Normal View History

2007-09-14 04:32:46 +00:00
pkgconfigdir=$(libdir)/pkgconfig
libincludedir=$(includedir)/libisoburn
2007-09-14 04:32:46 +00:00
lib_LTLIBRARIES = libisoburn/libisoburn.la
2007-09-14 04:32:46 +00:00
## ========================================================================= ##
# Build libraries
libisoburn_libisoburn_la_LDFLAGS = \
2007-09-14 04:32:46 +00:00
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
libisoburn_libisoburn_la_SOURCES = \
libisoburn/burn_wrap.c \
libisoburn/data_source.c \
libisoburn/isoburn.c \
libisoburn/isoburn.h \
libisoburn/isofs_wrap.c \
libisoburn/libisoburn.h \
2007-09-14 04:32:46 +00:00
version.h
libinclude_HEADERS = \
libisoburn/libisoburn.h
2007-09-14 04:32:46 +00:00
## ========================================================================= ##
## Build test applications
noinst_PROGRAMS =
# ts A80110 : I am too lazy for now to apply the ng patch to test.c .
# noinst_PROGRAMS =
# test/test
# test_test_CPPFLAGS = -Ilibisofs -Ilibburn -Ilibisoburn
# test_test_LDADD = $(libisoburn_libisoburn_la_OBJECTS) $(THREAD_LIBS) -lburn -lisofs
# test_test_SOURCES = test/test.c
2007-09-14 04:32:46 +00:00
2007-09-21 17:32:26 +00:00
bin_PROGRAMS =
2007-09-14 04:32:46 +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)
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 = \
$(libisoburn_libisoburn_la_SOURCES)
2007-09-14 04:32:46 +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 = \
libisoburn.pc
2007-09-14 04:32:46 +00:00
EXTRA_DIST = \
libisoburn.pc.in \
2007-09-14 04:32:46 +00:00
version.h.in \
doc/comments \
doc/doxygen.conf.in \
README \
AUTHORS \
CONTRIBUTORS \
COPYRIGHT \
COPYING \
NEWS \
ChangeLog \
INSTALL
2007-09-14 04:32:46 +00:00