diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2013-06-24 09:06:05 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2013-06-24 09:06:05 +0000 |
commit | f2587f58840bb84b1c9227177ed95997aa92a357 (patch) | |
tree | 69edf6685397f395547aff5be569f657d5405458 /Build/source/libs/lua52/include/Makefile.am | |
parent | cd573af8ce5db24aae95c942b2ba505ca0a3338f (diff) |
lua 5.2.1 (moved from luatexdir)
git-svn-id: svn://tug.org/texlive/trunk@30887 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/lua52/include/Makefile.am')
-rw-r--r-- | Build/source/libs/lua52/include/Makefile.am | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/Build/source/libs/lua52/include/Makefile.am b/Build/source/libs/lua52/include/Makefile.am new file mode 100644 index 00000000000..1cc17cb6ce6 --- /dev/null +++ b/Build/source/libs/lua52/include/Makefile.am @@ -0,0 +1,41 @@ +## Proxy Makefile.am to install lua52 headers for TeX Live. +## +## Copyright (C) 2013 Peter Breitenlohner <tex-live@tug.org> +## +## This file is free software; the copyright holder +## gives unlimited permission to copy and/or distribute it, +## with or without modifications, as long as this notice is preserved. +## +LUA52_SRC = $(top_srcdir)/$(LUA52_TREE)/src + +hdr_links = \ + $(LUA52_SRC)/lapi.h \ + $(LUA52_SRC)/lauxlib.h \ + $(LUA52_SRC)/lcode.h \ + $(LUA52_SRC)/lctype.h \ + $(LUA52_SRC)/ldebug.h \ + $(LUA52_SRC)/ldo.h \ + $(LUA52_SRC)/lfunc.h \ + $(LUA52_SRC)/lgc.h \ + $(LUA52_SRC)/llex.h \ + $(LUA52_SRC)/llimits.h \ + $(LUA52_SRC)/lmem.h \ + $(LUA52_SRC)/lobject.h \ + $(LUA52_SRC)/lopcodes.h \ + $(LUA52_SRC)/lparser.h \ + $(LUA52_SRC)/lstate.h \ + $(LUA52_SRC)/lstring.h \ + $(LUA52_SRC)/ltable.h \ + $(LUA52_SRC)/ltm.h \ + $(LUA52_SRC)/luaconf.h \ + $(LUA52_SRC)/lua.h \ + $(LUA52_SRC)/lua.hpp \ + $(LUA52_SRC)/lualib.h \ + $(LUA52_SRC)/lundump.h \ + $(LUA52_SRC)/lvm.h \ + $(LUA52_SRC)/lzio.h + +include $(top_srcdir)/../am/hdr_links.am + +DISTCLEANFILES = lua.hpp + |