blob: de6160b355d17074ba6e13b86c413b8d71cde241 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Main lspipat Automake file
# processed automatically
AM_CFLAGS = -std=c99 -Wall
lualib_lspipat_LTLIBRARIES = core.la
core_la_SOURCES = lspipat.c lspipat.h \
call.c compose.c unary.c render.c misc.c \
simple.c string.c uint.c
core_la_LDFLAGS = -module
if LUA_PRECOMPILE
lualib_DATA = lspipat.out
CLEANFILES = $(lualib_DATA)
EXTRA_DIST = lspipat.lua
lspipat.out : lspipat.lua
@LUAC@ @LUAC_FLAGS@ -o $@ $<
install-data-hook :
mv -f $(DESTDIR)$(lualibdir)/lspipat.out $(DESTDIR)$(lualibdir)/lspipat.lua
else
dist_lualib_DATA = lspipat.lua
endif
|