1
0
Fork 0
mirror of https://git.tukaani.org/xz.git synced 2024-04-04 12:36:23 +02:00
xz-archive/src/xz/Makefile.am

65 lines
1.1 KiB
Text
Raw Normal View History

2007-12-08 23:42:33 +01:00
##
## Author: Lasse Collin
2007-12-08 23:42:33 +01: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
##
bin_PROGRAMS = xz
2007-12-08 23:42:33 +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 \
main.h \
message.c \
message.h \
2007-12-08 23:42:33 +01:00
options.c \
options.h \
private.h \
process.c \
process.h \
signals.c \
signals.h \
2007-12-08 23:42:33 +01:00
suffix.c \
suffix.h \
util.c \
util.h
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 \
@STATIC_CPPFLAGS@
2007-12-08 23:42:33 +01:00
xz_LDFLAGS = @STATIC_LDFLAGS@
xz_LDADD = \
2007-12-08 23:42:33 +01:00
@top_builddir@/src/liblzma/liblzma.la \
@LTLIBINTL@
2007-12-08 23:42:33 +01:00
if COND_GNULIB
xz_LDADD += @top_builddir@/lib/libgnu.a
2007-12-08 23:42:33 +01:00
endif
2008-04-24 19:23:05 +02: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) && \
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) && \
rm -f unxz xzcat lzma unlzma lzcat