changeset 15:4b455313327d

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