123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- #
- ## $Id: makefile,v 1.27 2000/09/11 20:29:27 roberto Exp roberto $
- ## Makefile
- ## See Copyright Notice in lua.h
- #
- #CONFIGURATION
- # define (undefine) POPEN if your system (does not) support piped I/O
- #
- # define (undefine) _POSIX_SOURCE if your system is (not) POSIX compliant
- #
- # define (undefine) OLD_ANSI if your system does NOT have some new ANSI
- # facilities (e.g. strerror, locale.h, memmove). SunOS does not comply;
- # so, add "-DOLD_ANSI" on SunOS
- #
- # define LUA_NUM_TYPE if you need numbers to be different from double
- # (for instance, -DLUA_NUM_TYPE=float)
- # you may need to adapat the code, too.
- #
- # define LUA_COMPAT_READPATTERN if you need read patterns
- # (only for compatibility with previous versions)
- # define LUA_COMPAT_ARGRET for compatibility in the way function results
- # are passed as arguments
- # define LUA_DEPRECATETFUNCS to include obsolete functions
- CONFIG = -DPOPEN -D_POSIX_SOURCE
- #CONFIG = -DOLD_ANSI -DDEBUG -DLUA_COMPAT_READPATTERN -DLUA_COMPAT_ARGRET
- # -DLUA_DEPRECATETFUNCS
- # Compilation parameters
- CC = gcc
- CWARNS = -Wall -W -pedantic \
- -Waggregate-return \
- -Wcast-align \
- -Wmissing-prototypes \
- -Wnested-externs \
- -Wpointer-arith \
- -Wshadow \
- -Wwrite-strings
- # -Wcast-qual
- # -Wtraditional
- CFLAGS = $(CONFIG) $(CWARNS) -ansi -O2
- # To make early versions
- CO_OPTIONS =
- AR = ar
- ARFLAGS = rvl
- # Aplication modules
- LUAOBJS = \
- lstate.o \
- lapi.o \
- lmem.o \
- lstring.o \
- ltable.o \
- ltm.o \
- lvm.o \
- ldo.o \
- lobject.o \
- lfunc.o \
- lgc.o \
- lcode.o \
- lparser.o \
- llex.o \
- lundump.o \
- lzio.o \
- ldebug.o \
- ltests.o
- LIBOBJS = \
- lauxlib.o \
- lbaselib.o \
- liolib.o \
- lmathlib.o \
- lstrlib.o \
- ldblib.o
- lua : lua.o liblua.a liblualib.a
- $(CC) $(CFLAGS) -o $@ lua.o -L. -llua -llualib -lm
- liblua.a : $(LUAOBJS)
- $(AR) $(ARFLAGS) $@ $?
- ranlib $@
- liblualib.a : $(LIBOBJS)
- $(AR) $(ARFLAGS) $@ $?
- ranlib $@
- liblua.so.1.0 : lua.o
- ld -o liblua.so.1.0 $(LUAOBJS)
- clear :
- rcsclean
- rm -f *.o *.a
- %.h : RCS/%.h,v
- co $(CO_OPTIONS) $@
- %.c : RCS/%.c,v
- co $(CO_OPTIONS) $@
- lapi.o: lapi.c lua.h lapi.h lobject.h llimits.h ldo.h lstate.h \
- luadebug.h lfunc.h lgc.h lmem.h lstring.h ltable.h ltm.h lvm.h
- lauxlib.o: lauxlib.c lua.h lauxlib.h luadebug.h
- lbaselib.o: lbaselib.c lua.h lauxlib.h luadebug.h lualib.h
- lcode.o: lcode.c /usr/include/stdlib.h lua.h lcode.h llex.h lobject.h \
- llimits.h lzio.h lopcodes.h lparser.h ldo.h lstate.h luadebug.h \
- lmem.h
- ldblib.o: ldblib.c lua.h lauxlib.h luadebug.h lualib.h
- ldebug.o: ldebug.c lua.h lapi.h lobject.h llimits.h lcode.h llex.h \
- lzio.h lopcodes.h lparser.h ldebug.h lstate.h luadebug.h ldo.h \
- lfunc.h lstring.h ltable.h ltm.h
- ldo.o: ldo.c lua.h ldebug.h lstate.h lobject.h llimits.h luadebug.h \
- ldo.h lgc.h lmem.h lparser.h lzio.h lstring.h ltable.h ltm.h \
- lundump.h lvm.h
- lfunc.o: lfunc.c lua.h lfunc.h lobject.h llimits.h lmem.h lstate.h \
- luadebug.h
- lgc.o: lgc.c lua.h ldo.h lobject.h llimits.h lstate.h luadebug.h \
- lfunc.h lgc.h lmem.h lstring.h ltable.h ltm.h
- liolib.o: liolib.c lua.h lauxlib.h luadebug.h lualib.h
- llex.o: llex.c lua.h llex.h lobject.h llimits.h lzio.h lmem.h \
- lparser.h lstate.h luadebug.h lstring.h ltable.h
- lmathlib.o: lmathlib.c lua.h lauxlib.h lualib.h
- lmem.o: lmem.c lua.h ldo.h lobject.h llimits.h lstate.h luadebug.h \
- lmem.h
- lobject.o: lobject.c lua.h lmem.h llimits.h lobject.h lstate.h \
- luadebug.h
- lparser.o: lparser.c lua.h lcode.h llex.h lobject.h llimits.h lzio.h \
- lopcodes.h lparser.h lfunc.h lmem.h lstate.h luadebug.h lstring.h
- lstate.o: lstate.c lua.h ldo.h lobject.h llimits.h lstate.h luadebug.h \
- lgc.h llex.h lzio.h lmem.h lstring.h ltable.h ltm.h
- lstring.o: lstring.c lua.h lmem.h llimits.h lobject.h lstate.h \
- luadebug.h lstring.h
- lstrlib.o: lstrlib.c lua.h lauxlib.h lualib.h
- ltable.o: ltable.c lua.h lmem.h llimits.h lobject.h lstate.h \
- luadebug.h lstring.h ltable.h
- ltests.o: ltests.c lua.h lapi.h lobject.h llimits.h lauxlib.h lcode.h \
- llex.h lzio.h lopcodes.h lparser.h ldebug.h lstate.h luadebug.h ldo.h \
- lfunc.h lmem.h lstring.h ltable.h lualib.h
- ltm.o: ltm.c lua.h ldo.h lobject.h llimits.h lstate.h luadebug.h \
- lmem.h ltm.h
- lua.o: lua.c lua.h luadebug.h lualib.h
- lundump.o: lundump.c lfunc.h lobject.h llimits.h lua.h lmem.h \
- lopcodes.h lstring.h lstate.h luadebug.h lundump.h lzio.h
- lvm.o: lvm.c lua.h lapi.h lobject.h llimits.h ldebug.h lstate.h \
- luadebug.h ldo.h lfunc.h lgc.h lopcodes.h lstring.h ltable.h ltm.h \
- lvm.h
- lzio.o: lzio.c lua.h lzio.h
|