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 \
|
|
|
|
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 \
|
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 \
|
|
|
|
util.h
|
|
|
|
|
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 \
|
|
|
|
-I$(top_builddir)/lib \
|
|
|
|
-I$(top_srcdir)/lib \
|
|
|
|
$(STATIC_CPPFLAGS)
|
2007-12-08 23:42:33 +01:00
|
|
|
|
2009-06-26 13:47:31 +02:00
|
|
|
xz_LDFLAGS = $(STATIC_LDFLAGS)
|
|
|
|
xz_LDADD = $(top_builddir)/src/liblzma/liblzma.la
|
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
|
|
|
|
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
|