pkgconfigdir=$(libdir)/pkgconfig
libincludedir=

lib_LTLIBRARIES =

## ========================================================================= ##

libinclude_HEADERS =

## ========================================================================= ##

bin_PROGRAMS = \
	xorriso/xorriso

xorriso_xorriso_CPPFLAGS = -I./libburn -I./libisofs -I./libisoburn -I./xorriso

# No readline in the vanilla version because the necessary headers
# are in a separate readline-development package.
xorriso_xorriso_CFLAGS = -DXorriso_standalonE -DXorriso_with_maiN -DXorriso_with_regeX $(READLINE_DEF)

xorriso_xorriso_LDADD = $(THREAD_LIBS)

xorriso_xorriso_SOURCES = \
	\
	xorriso/xorriso.h \
	xorriso/xorriso_private.h \
	xorriso/xorriso.c \
	xorriso/xorrisoburn.h \
	xorriso/xorrisoburn.c \
	xorriso/xorriso_timestamp.h \
	\
	libisoburn/libisoburn.h \
	libisoburn/isoburn.h \
	libisoburn/isoburn.c \
	libisoburn/isofs_wrap.c \
	libisoburn/burn_wrap.c \
	libisoburn/data_source.c \
	\
	libisofs/builder.h \
	libisofs/builder.c \
	libisofs/error.h \
	libisofs/node.h \
	libisofs/node.c \
	libisofs/tree.h \
	libisofs/tree.c \
	libisofs/image.h \
	libisofs/image.c \
	libisofs/iso1999.h \
	libisofs/iso1999.c \
	libisofs/fsource.h \
	libisofs/fsource.c \
	libisofs/fs_local.c \
	libisofs/fs_image.h \
	libisofs/fs_image.c \
	libisofs/messages.h \
	libisofs/messages.c \
	libisofs/libiso_msgs.h \
	libisofs/libiso_msgs.c \
	libisofs/stream.h \
	libisofs/stream.c \
	libisofs/util.h \
	libisofs/util.c \
	libisofs/util_rbtree.c \
	libisofs/util_htable.c \
	libisofs/filesrc.h \
	libisofs/filesrc.c \
	libisofs/ecma119.h \
	libisofs/ecma119.c \
	libisofs/ecma119_tree.h \
	libisofs/ecma119_tree.c \
	libisofs/writer.h \
	libisofs/buffer.c \
	libisofs/rockridge.h \
	libisofs/rockridge.c \
	libisofs/rockridge_read.c \
	libisofs/joliet.h \
	libisofs/joliet.c \
	libisofs/eltorito.h \
	libisofs/eltorito.c \
	libisofs/data_source.c \
	\
	libburn/async.c \
	libburn/async.h \
	libburn/back_hacks.h \
	libburn/cleanup.c \
	libburn/cleanup.h \
	libburn/crc.c \
	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


noinst_PROGRAMS = \
	test/compare_file

# A program to compare two trees of files in mounted filesystems
# To compare tree /media/dvd and /original/dir :
#   find /media/dvd -exec test/compare_file '{}' /media/dvd /original/dir ';'
#
test_compare_file_CPPFLAGS =
test_compare_file_CFLAGS =
test_compare_file_LDADD =
test_compare_file_SOURCES = test/compare_file.c


## ========================================================================= ##

# Indent source files
indent_files = 
	

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 = \
	xorriso.pc

man_MANS = xorriso/xorriso.1

EXTRA_DIST = \
	xorriso.pc.in \
	version.h.in \
	README \
	AUTHORS \
	CONTRIBUTORS \
	COPYRIGHT \
	COPYING \
	NEWS \
	ChangeLog \
	INSTALL \
	xorriso/compile_xorriso.sh \
	$(man_MANS)