2007-12-08 23:42:33 +01:00
|
|
|
##
|
2009-04-13 10:27:40 +02:00
|
|
|
## Author: Lasse Collin
|
2007-12-08 23:42:33 +01:00
|
|
|
##
|
2009-04-13 10:27:40 +02:00
|
|
|
## This file has been put into the public domain.
|
|
|
|
## You can do whatever you want with this file.
|
2007-12-08 23:42:33 +01:00
|
|
|
##
|
|
|
|
|
2008-11-19 22:52:24 +01:00
|
|
|
bin_PROGRAMS = xz
|
2007-12-08 23:42:33 +01:00
|
|
|
|
2008-11-19 22:52:24 +01:00
|
|
|
xz_SOURCES = \
|
2007-12-08 23:42:33 +01:00
|
|
|
args.c \
|
|
|
|
args.h \
|
2009-06-26 19:49:54 +02:00
|
|
|
coder.c \
|
|
|
|
coder.h \
|
|
|
|
file_io.c \
|
|
|
|
file_io.h \
|
2007-12-08 23:42:33 +01:00
|
|
|
hardware.c \
|
|
|
|
hardware.h \
|
|
|
|
main.c \
|
2008-11-19 19:46:52 +01:00
|
|
|
main.h \
|
|
|
|
message.c \
|
|
|
|
message.h \
|
2013-07-04 11:51:57 +02:00
|
|
|
mytime.c \
|
|
|
|
mytime.h \
|
2007-12-08 23:42:33 +01:00
|
|
|
options.c \
|
|
|
|
options.h \
|
|
|
|
private.h \
|
2009-02-05 08:12:57 +01:00
|
|
|
signals.c \
|
|
|
|
signals.h \
|
2007-12-08 23:42:33 +01:00
|
|
|
suffix.c \
|
|
|
|
suffix.h \
|
|
|
|
util.c \
|
2009-09-19 08:47:30 +02:00
|
|
|
util.h \
|
2014-10-29 20:15:35 +01:00
|
|
|
../common/tuklib_open_stdxxx.c \
|
|
|
|
../common/tuklib_progname.c \
|
|
|
|
../common/tuklib_exit.c \
|
|
|
|
../common/tuklib_mbstr_width.c \
|
|
|
|
../common/tuklib_mbstr_fw.c
|
2007-12-08 23:42:33 +01:00
|
|
|
|
2015-11-03 19:29:33 +01:00
|
|
|
if COND_MAIN_DECODER
|
2016-04-10 19:55:49 +02:00
|
|
|
xz_SOURCES += \
|
2015-11-03 19:29:33 +01:00
|
|
|
list.c \
|
|
|
|
list.h
|
|
|
|
endif
|
|
|
|
|
2009-06-30 16:09:57 +02:00
|
|
|
if COND_W32
|
|
|
|
xz_SOURCES += xz_w32res.rc
|
|
|
|
endif
|
|
|
|
|
2008-11-19 22:52:24 +01:00
|
|
|
xz_CPPFLAGS = \
|
2007-12-08 23:42:33 +01:00
|
|
|
-DLOCALEDIR=\"$(localedir)\" \
|
2009-06-26 13:47:31 +02:00
|
|
|
-I$(top_srcdir)/src/common \
|
|
|
|
-I$(top_srcdir)/src/liblzma/api \
|
2010-10-05 13:13:16 +02:00
|
|
|
-I$(top_builddir)/lib
|
2007-12-08 23:42:33 +01:00
|
|
|
|
2015-03-31 21:19:34 +02:00
|
|
|
xz_LDADD = $(top_builddir)/src/liblzma/liblzma.la $(CAPSICUM_LIB)
|
2007-12-08 23:42:33 +01:00
|
|
|
|
|
|
|
if COND_GNULIB
|
2009-06-26 13:47:31 +02:00
|
|
|
xz_LDADD += $(top_builddir)/lib/libgnu.a
|
2007-12-08 23:42:33 +01:00
|
|
|
endif
|
2008-04-24 19:23:05 +02:00
|
|
|
|
2009-06-26 13:47:31 +02:00
|
|
|
# libgnu.a may need these libs, so this must be after libgnu.a.
|
|
|
|
xz_LDADD += $(LTLIBINTL)
|
|
|
|
|
2008-04-24 19:23:05 +02:00
|
|
|
|
2009-06-30 16:09:57 +02:00
|
|
|
# Windows resource compiler support
|
|
|
|
.rc.o:
|
|
|
|
$(RC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
|
|
|
$(xz_CPPFLAGS) $(CPPFLAGS) $(RCFLAGS) -i $< -o $@
|
|
|
|
|
|
|
|
|
2009-08-10 10:22:31 +02:00
|
|
|
dist_man_MANS = xz.1
|
|
|
|
|
|
|
|
|
2009-06-27 11:32:40 +02:00
|
|
|
## Create symlinks for unxz and xzcat for convenience. Create symlinks also
|
2008-11-19 22:52:24 +01:00
|
|
|
## for lzma, unlzma, and lzcat for compatibility with LZMA Utils 4.32.x.
|
2010-10-08 14:25:45 +02:00
|
|
|
xzlinks = unxz xzcat
|
|
|
|
|
|
|
|
if COND_LZMALINKS
|
|
|
|
xzlinks += lzma unlzma lzcat
|
|
|
|
endif
|
2009-06-27 11:32:40 +02:00
|
|
|
|
2008-04-24 19:23:05 +02:00
|
|
|
install-exec-hook:
|
2020-02-07 14:32:21 +01:00
|
|
|
cd "$(DESTDIR)$(bindir)" && \
|
2009-07-06 09:36:04 +02:00
|
|
|
target=`echo xz | sed '$(transform)'`$(EXEEXT) && \
|
2009-06-27 11:32:40 +02:00
|
|
|
for name in $(xzlinks); do \
|
2009-09-11 09:24:09 +02:00
|
|
|
link=`echo $$name | sed '$(transform)'`$(LN_EXEEXT) && \
|
2020-02-07 14:32:21 +01:00
|
|
|
rm -f "$$link" && \
|
|
|
|
$(LN_S) "$$target" "$$link"; \
|
2009-06-27 11:32:40 +02:00
|
|
|
done
|
2009-08-13 11:56:47 +02:00
|
|
|
|
2020-02-07 14:32:21 +01:00
|
|
|
# The installation of translated man pages abuses Automake internals
|
|
|
|
# by calling "install-man" with redefined dist_man_MANS and man_MANS.
|
|
|
|
# If this breaks some day, don't blame Automake developers.
|
2009-08-13 11:56:47 +02:00
|
|
|
install-data-hook:
|
2020-02-07 14:32:21 +01:00
|
|
|
languages= ; \
|
|
|
|
if test "$(USE_NLS)" = yes && test -d "$(top_srcdir)/po4a/man"; then \
|
|
|
|
languages=`ls "$(top_srcdir)/po4a/man"`; \
|
|
|
|
fi; \
|
2009-08-10 10:22:31 +02:00
|
|
|
target=`echo xz | sed '$(transform)'` && \
|
2020-02-07 14:32:21 +01:00
|
|
|
for lang in . $$languages; do \
|
|
|
|
man="$(top_srcdir)/po4a/man/$$lang/xz.1" ; \
|
|
|
|
if test -f "$$man"; then \
|
|
|
|
$(MAKE) dist_man_MANS="$$man" man_MANS= \
|
|
|
|
mandir="$(mandir)/$$lang" install-man; \
|
|
|
|
fi; \
|
|
|
|
man1dir="$(DESTDIR)$(mandir)/$$lang/man1" && \
|
|
|
|
if test -f "$$man1dir/$$target.1"; then ( \
|
|
|
|
cd "$$man1dir" && \
|
|
|
|
for name in $(xzlinks); do \
|
|
|
|
link=`echo $$name | sed '$(transform)'` && \
|
|
|
|
rm -f "$$link.1" && \
|
|
|
|
$(LN_S) "$$target.1" "$$link.1"; \
|
|
|
|
done \
|
|
|
|
); fi; \
|
2009-08-10 10:22:31 +02:00
|
|
|
done
|
2008-04-24 19:23:05 +02:00
|
|
|
|
|
|
|
uninstall-hook:
|
2020-02-07 14:32:21 +01:00
|
|
|
cd "$(DESTDIR)$(bindir)" && \
|
2009-06-27 11:32:40 +02:00
|
|
|
for name in $(xzlinks); do \
|
2009-09-11 09:24:09 +02:00
|
|
|
link=`echo $$name | sed '$(transform)'`$(LN_EXEEXT) && \
|
2020-02-07 14:32:21 +01:00
|
|
|
rm -f "$$link"; \
|
2009-06-27 11:32:40 +02:00
|
|
|
done
|
2020-02-07 14:32:21 +01:00
|
|
|
languages= ; \
|
|
|
|
if test "$(USE_NLS)" = yes && test -d "$(top_srcdir)/po4a/man"; then \
|
|
|
|
languages=`ls "$(top_srcdir)/po4a/man"`; \
|
|
|
|
fi; \
|
|
|
|
for lang in . $$languages; do \
|
|
|
|
for name in xz $(xzlinks); do \
|
|
|
|
name=`echo $$name | sed '$(transform)'` && \
|
|
|
|
rm -f "$(DESTDIR)$(mandir)/$$lang/man1/$$name.1"; \
|
|
|
|
done; \
|
2009-08-10 10:22:31 +02:00
|
|
|
done
|