diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-03-20 10:52:25 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-03-20 10:52:25 +0000 |
commit | 86e05f4101d05860ce03ebdab63d146957b05613 (patch) | |
tree | db97458fc77bdf6ba69dd6cb0414810126938c0e /Build/source/texk/web2c/luatexdir/luazip/config | |
parent | a770f7dc16dcbd5ea863f597e42c1901253eb1d7 (diff) |
new build system
git-svn-id: svn://tug.org/texlive/trunk@12465 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/luazip/config')
-rw-r--r-- | Build/source/texk/web2c/luatexdir/luazip/config | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/luatexdir/luazip/config b/Build/source/texk/web2c/luatexdir/luazip/config new file mode 100644 index 00000000000..83f4b958101 --- /dev/null +++ b/Build/source/texk/web2c/luatexdir/luazip/config @@ -0,0 +1,23 @@ +# Installation directories +# System's libraries directory (where binary libraries are installed) +LUA_LIBDIR= /usr/local/lib/lua/5.0 +# System's lua directory (where Lua libraries are installed) +LUA_DIR= /usr/local/share/lua/5.0 +# Lua includes directory +LUA_INC= /home/taco/luatex-dev/luatex/src/libs/lua51 +# Zziplib includes directory +ZZLIB_INC= /usr/include + +# OS dependent +LIB_OPTION= -shared #for Linux +#LIB_OPTION= -bundle -undefined dynamic_lookup #for MacOS X + +LIBNAME= $T.so.$V + +# Compilation directives +WARN= -O2 -Wall -fPIC -W -Waggregate-return -Wcast-align -Wmissing-prototypes -Wnested-externs -Wshadow -Wwrite-strings +INCS= -I$(LUA_INC) -I$(ZZLIB_INC) +CFLAGS= $(WARN) $(INCS) +CC= gcc + +# $Id: config,v 1.5 2005/06/24 02:00:38 tomas Exp $ |