30 lines
576 B
Makefile
30 lines
576 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
|
||
|
|
||
|
lzmainfo_CPPFLAGS = \
|
||
|
-DLOCALEDIR=\"$(localedir)\" \
|
||
|
-I$(top_srcdir)/src/common \
|
||
|
-I$(top_srcdir)/src/liblzma/api \
|
||
|
-I$(top_builddir)/lib \
|
||
|
$(STATIC_CPPFLAGS)
|
||
|
|
||
|
lzmainfo_LDFLAGS = $(STATIC_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
|