blob: 31d702df15b8aa957c8ad35bcd1e0b07a12ee0d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
## texk/web2c/luatexdir/am/txt2zlib.am: Makefile fragment for txt2zlib.
##
## Copyright (C) 2010, 2011 Hartmut Henkel <hartmut@luatex.org>
## You may freely use, modify and/or distribute this file.
##
## $Id: txt2zlib.am 3958 2010-11-12 22:57:13Z hhenkel $
noinst_PROGRAMS += txt2zlib
nodist_txt2zlib_SOURCES = txt2zlib.c
txt2zlib_CPPFLAGS = $(ZLIB_INCLUDES)
txt2zlib_DEPENDENCIES = $(ZLIB_DEPEND)
txt2zlib_CFLAGS = $(WARNING_CFLAGS)
txt2zlib_LDADD = $(ZLIB_LIBS)
DISTCLEANFILES += txt2zlib.c
luatex_luascripts_ctangle = CWEBINPUTS=$(srcdir)/luatexdir/luascripts $(ctangle)
txt2zlib.c: ctangle$(EXEEXT) luatexdir/luascripts/txt2zlib.w
$(luatex_luascripts_ctangle) txt2zlib.w
EXTRA_DIST += luatexdir/luascripts/txt2zlib.w
|