changeset 14:32bb141d34de

cleaning up lua stuff
author Robert McIntyre <rlm@mit.edu>
date Sat, 03 Mar 2012 11:29:11 -0600
parents 731894a84231
children 4b455313327d
files src/lua/Makefile.am
diffstat 1 files changed, 56 insertions(+), 29 deletions(-) [+]
line wrap: on
line diff
     1.1 --- a/src/lua/Makefile.am	Sat Mar 03 11:10:08 2012 -0600
     1.2 +++ b/src/lua/Makefile.am	Sat Mar 03 11:29:11 2012 -0600
     1.3 @@ -1,56 +1,83 @@
     1.4  noinst_LIBRARIES = libgblua.a
     1.5  
     1.6 +# libgblua_a_HEADERS = \
     1.7 +# 	lapi.h  	\
     1.8 +# 	lauxlib.h	\
     1.9 +# 	lcode.h 	\
    1.10 +# 	ldebug.h	\
    1.11 +# 	ldo.h   	\
    1.12 +# 	lfunc.h  	\
    1.13 +# 	lgc.h   	\
    1.14 +# 	llex.h  	\
    1.15 +# 	llimit.h	\
    1.16 +# 	lmem.h   	\
    1.17 +# 	lobject.h	\
    1.18 +# 	lopcodes.h	\
    1.19 +# 	lparser.h	\
    1.20 +# 	lstate.h	\
    1.21 +# 	lstring.h	\
    1.22 +# 	ltable.h	\
    1.23 +# 	ltm.h   	\
    1.24 +# 	lua.h   	\
    1.25 +# 	luaconf.h	\
    1.26 +# 	lualib.h	\
    1.27 +# 	lundump.h	\
    1.28 +# 	lvm.h   	\
    1.29 +# 	lzio.h  	
    1.30 +
    1.31  libgblua_a_SOURCES = \
    1.32 -	lapi.c  	\
    1.33  	lapi.h  	\
    1.34 -	lauxlib.c	\
    1.35  	lauxlib.h	\
    1.36 -	lbaselib.c	\
    1.37 -	lcode.c 	\
    1.38  	lcode.h 	\
    1.39 -	ldblib.c	\
    1.40 -	ldebug.c	\
    1.41  	ldebug.h	\
    1.42 -	ldo.c   	\
    1.43  	ldo.h   	\
    1.44 -	ldump.c 	\
    1.45 -	lfunc.c 	\
    1.46  	lfunc.h  	\
    1.47 -	lgc.c   	\
    1.48  	lgc.h   	\
    1.49 -	linit.c  	\
    1.50 -	liolib.c	\
    1.51 -	llex.c  	\
    1.52  	llex.h  	\
    1.53  	llimit.h	\
    1.54 -	lmathlib.c	\
    1.55 -	lmem.c          \
    1.56  	lmem.h   	\
    1.57 -	loadlib.c	\
    1.58 -	lobject.c	\
    1.59  	lobject.h	\
    1.60 -	lopcodes.c	\
    1.61  	lopcodes.h	\
    1.62 -	loslib.c	\
    1.63 -	lparser.c	\
    1.64  	lparser.h	\
    1.65 -	lstate.c	\
    1.66  	lstate.h	\
    1.67 -	lstring.c	\
    1.68  	lstring.h	\
    1.69 -	lstrlib.c	\
    1.70 -	ltable.c	\
    1.71  	ltable.h	\
    1.72 -	ltablib.c	\
    1.73 -	ltm.c   	\
    1.74  	ltm.h   	\
    1.75  	lua.h   	\
    1.76  	luaconf.h	\
    1.77  	lualib.h	\
    1.78 +	lundump.h	\
    1.79 +	lvm.h   	\
    1.80 +	lzio.h  	\
    1.81 +			\
    1.82 +	lapi.c  	\
    1.83 +	lauxlib.c	\
    1.84 +	lbaselib.c	\
    1.85 +	lcode.c 	\
    1.86 +	ldblib.c	\
    1.87 +	ldebug.c	\
    1.88 +	ldo.c   	\
    1.89 +	ldump.c 	\
    1.90 +	lfunc.c 	\
    1.91 +	lgc.c   	\
    1.92 +	linit.c  	\
    1.93 +	liolib.c	\
    1.94 +	llex.c  	\
    1.95 +	lmathlib.c	\
    1.96 +	lmem.c          \
    1.97 +	loadlib.c	\
    1.98 +	lobject.c	\
    1.99 +	lopcodes.c	\
   1.100 +	loslib.c	\
   1.101 +	lparser.c	\
   1.102 +	lstate.c	\
   1.103 +	lstring.c	\
   1.104 +	lstrlib.c	\
   1.105 +	ltable.c	\
   1.106 +	ltablib.c	\
   1.107 +	ltm.c   	\
   1.108  	lundump.c	\
   1.109 -	lundump.h	\
   1.110  	lvm.c   	\
   1.111 -	lvm.h   	\
   1.112  	lzio.c   	\
   1.113 -	lzio.h  	\
   1.114  	print.c
   1.115 +