mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
e599bba421
Separate a few reusable components from XZ Utils specific code. The reusable code is now in "tuklib" modules. A few more could be separated still, e.g. bswap.h. Fix some bugs in lzmainfo. Fix physmem and cpucores code on OS/2. Thanks to Elbert Pol for help. Add OpenVMS support into physmem. Add a few #ifdefs to ease building XZ Utils on OpenVMS. Thanks to Jouk Jansen for the original patch.
32 lines
669 B
Makefile
32 lines
669 B
Makefile
##
|
|
## Author: Lasse Collin
|
|
##
|
|
## This file has been put into the public domain.
|
|
## You can do whatever you want with this file.
|
|
##
|
|
|
|
bin_PROGRAMS = lzmainfo
|
|
|
|
lzmainfo_SOURCES = \
|
|
lzmainfo.c \
|
|
$(top_srcdir)/src/common/tuklib_progname.c \
|
|
$(top_srcdir)/src/common/tuklib_exit.c
|
|
|
|
lzmainfo_CPPFLAGS = \
|
|
-DLOCALEDIR=\"$(localedir)\" \
|
|
-I$(top_srcdir)/src/common \
|
|
-I$(top_srcdir)/src/liblzma/api \
|
|
-I$(top_builddir)/lib \
|
|
$(DYNAMIC_CPPFLAGS)
|
|
|
|
lzmainfo_LDFLAGS = $(DYNAMIC_LDFLAGS)
|
|
lzmainfo_LDADD = $(top_builddir)/src/liblzma/liblzma.la
|
|
|
|
if COND_GNULIB
|
|
lzmainfo_LDADD += $(top_builddir)/lib/libgnu.a
|
|
endif
|
|
|
|
lzmainfo_LDADD += $(LTLIBINTL)
|
|
|
|
|
|
dist_man_MANS = lzmainfo.1
|