2007-12-08 23:42:33 +01:00
|
|
|
##
|
|
|
|
## Copyright (C) 2007 Lasse Collin
|
|
|
|
##
|
|
|
|
## This program is free software; you can redistribute it and/or
|
|
|
|
## modify it under the terms of the GNU Lesser General Public
|
|
|
|
## License as published by the Free Software Foundation; either
|
|
|
|
## version 2.1 of the License, or (at your option) any later version.
|
|
|
|
##
|
|
|
|
## This program is distributed in the hope that it will be useful,
|
|
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
## Lesser General Public License for more details.
|
|
|
|
##
|
|
|
|
|
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 \
|
|
|
|
hardware.c \
|
|
|
|
hardware.h \
|
|
|
|
io.c \
|
|
|
|
io.h \
|
|
|
|
main.c \
|
2008-11-19 19:46:52 +01:00
|
|
|
main.h \
|
|
|
|
message.c \
|
|
|
|
message.h \
|
2007-12-08 23:42:33 +01:00
|
|
|
options.c \
|
|
|
|
options.h \
|
|
|
|
private.h \
|
|
|
|
process.c \
|
|
|
|
process.h \
|
|
|
|
suffix.c \
|
|
|
|
suffix.h \
|
|
|
|
util.c \
|
|
|
|
util.h
|
|
|
|
|
2008-11-19 22:52:24 +01:00
|
|
|
xz_CPPFLAGS = \
|
2007-12-08 23:42:33 +01:00
|
|
|
-DLOCALEDIR=\"$(localedir)\" \
|
|
|
|
-I@top_srcdir@/src/common \
|
|
|
|
-I@top_srcdir@/src/liblzma/api \
|
|
|
|
-I@top_builddir@/lib \
|
|
|
|
-I@top_srcdir@/lib
|
|
|
|
|
2008-11-19 22:52:24 +01:00
|
|
|
xz_CFLAGS = @PTHREAD_CFLAGS@
|
2007-12-08 23:42:33 +01:00
|
|
|
|
|
|
|
## Always link the command line tool statically against liblzma. It is
|
|
|
|
## faster on x86, because no need for PIC. We also have one dependency less,
|
2008-11-19 22:52:24 +01:00
|
|
|
## which allows users to more freely copy the xz binary to other boxes.
|
|
|
|
xz_LDFLAGS = -static
|
|
|
|
xz_LDADD = \
|
2007-12-08 23:42:33 +01:00
|
|
|
@top_builddir@/src/liblzma/liblzma.la \
|
|
|
|
@LTLIBINTL@ \
|
|
|
|
@PTHREAD_LIBS@
|
|
|
|
|
|
|
|
if COND_GNULIB
|
2008-11-19 22:52:24 +01: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
|
|
|
|
|
|
|
|
2008-11-19 22:52:24 +01:00
|
|
|
## Create symlinks for unxz and xzcat for convenicen. Create symlinks also
|
|
|
|
## for lzma, unlzma, and lzcat for compatibility with LZMA Utils 4.32.x.
|
2008-04-24 19:23:05 +02:00
|
|
|
install-exec-hook:
|
|
|
|
cd $(DESTDIR)$(bindir) && \
|
2008-11-19 22:52:24 +01:00
|
|
|
rm -f unxz xzcat lzma unlzma lzcat && \
|
|
|
|
$(LN_S) xz unxz && \
|
|
|
|
$(LN_S) xz xzcat && \
|
|
|
|
$(LN_S) xz lzma && \
|
|
|
|
$(LN_S) xz unlzma && \
|
|
|
|
$(LN_S) xz lzcat
|
2008-04-24 19:23:05 +02:00
|
|
|
|
|
|
|
uninstall-hook:
|
|
|
|
cd $(DESTDIR)$(bindir) && \
|
2008-11-19 22:52:24 +01:00
|
|
|
rm -f unxz xzcat lzma unlzma lzcat
|