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
|
|
|
##
|
|
|
|
|
2009-06-30 16:09:57 +02:00
|
|
|
# Windows resource compiler support. It's fine to use xz_CPPFLAGS
|
|
|
|
# also for lzmadec.
|
|
|
|
.rc.o:
|
|
|
|
$(RC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
|
|
|
$(xzdec_CPPFLAGS) $(CPPFLAGS) $(RCFLAGS) -i $< -o $@
|
|
|
|
|
|
|
|
|
2009-09-19 08:47:30 +02:00
|
|
|
xzdec_SOURCES = \
|
|
|
|
xzdec.c \
|
|
|
|
$(top_srcdir)/src/common/tuklib_progname.c \
|
2009-11-15 11:40:17 +01:00
|
|
|
$(top_srcdir)/src/common/tuklib_exit.c
|
2009-06-30 16:09:57 +02:00
|
|
|
|
|
|
|
if COND_W32
|
|
|
|
xzdec_SOURCES += xzdec_w32res.rc
|
|
|
|
endif
|
|
|
|
|
2008-11-19 22:52:24 +01:00
|
|
|
xzdec_CPPFLAGS = \
|
2009-09-19 08:47:30 +02:00
|
|
|
-DTUKLIB_GETTEXT=0 \
|
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
|
2009-06-26 13:47:31 +02:00
|
|
|
xzdec_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
|
|
|
xzdec_LDADD += $(top_builddir)/lib/libgnu.a
|
2007-12-08 23:42:33 +01:00
|
|
|
endif
|
2008-11-20 17:05:52 +01:00
|
|
|
|
2009-06-26 13:47:31 +02:00
|
|
|
xzdec_LDADD += $(LTLIBINTL)
|
|
|
|
|
|
|
|
|
2009-09-19 08:47:30 +02:00
|
|
|
lzmadec_SOURCES = \
|
|
|
|
xzdec.c \
|
|
|
|
$(top_srcdir)/src/common/tuklib_progname.c \
|
2009-11-15 11:40:17 +01:00
|
|
|
$(top_srcdir)/src/common/tuklib_exit.c
|
2009-06-30 16:09:57 +02:00
|
|
|
|
|
|
|
if COND_W32
|
|
|
|
lzmadec_SOURCES += lzmadec_w32res.rc
|
|
|
|
endif
|
|
|
|
|
2008-11-20 17:05:52 +01:00
|
|
|
lzmadec_CPPFLAGS = $(xzdec_CPPFLAGS) -DLZMADEC
|
|
|
|
lzmadec_LDFLAGS = $(xzdec_LDFLAGS)
|
|
|
|
lzmadec_LDADD = $(xzdec_LDADD)
|
2009-06-04 22:42:12 +02:00
|
|
|
|
2009-06-30 16:09:57 +02:00
|
|
|
|
2010-10-08 14:25:45 +02:00
|
|
|
bin_PROGRAMS =
|
|
|
|
|
|
|
|
if COND_XZDEC
|
|
|
|
bin_PROGRAMS += xzdec
|
2009-06-04 22:42:12 +02:00
|
|
|
dist_man_MANS = xzdec.1
|
2010-10-08 14:25:45 +02:00
|
|
|
endif
|
2009-06-04 22:42:12 +02:00
|
|
|
|
2010-10-08 14:25:45 +02:00
|
|
|
if COND_LZMADEC
|
|
|
|
bin_PROGRAMS += lzmadec
|
|
|
|
|
|
|
|
# FIXME: If xzdec is disabled, this will create a dangling symlink.
|
2009-06-04 22:42:12 +02:00
|
|
|
install-data-hook:
|
|
|
|
cd $(DESTDIR)$(mandir)/man1 && \
|
2009-07-06 09:36:04 +02:00
|
|
|
target=`echo xzdec | sed '$(transform)'` && \
|
|
|
|
link=`echo lzmadec | sed '$(transform)'` && \
|
2009-06-27 11:32:40 +02:00
|
|
|
rm -f $$link.1 && \
|
|
|
|
$(LN_S) $$target.1 $$link.1
|
2009-06-04 22:42:12 +02:00
|
|
|
|
|
|
|
uninstall-hook:
|
|
|
|
cd $(DESTDIR)$(mandir)/man1 && \
|
2009-07-06 09:36:04 +02:00
|
|
|
link=`echo lzmadec | sed '$(transform)'` && \
|
2009-06-27 11:32:40 +02:00
|
|
|
rm -f $$link.1
|
2010-10-08 14:25:45 +02:00
|
|
|
endif
|