This commit is contained in:
Roberto Ierusalimschy 1999-01-11 18:23:54 -02:00
parent 8081f39dab
commit e24f7fd2d2
1 changed files with 8 additions and 4 deletions

View File

@ -1,5 +1,5 @@
# #
## $Id: makefile,v 1.13 1998/06/19 18:52:27 roberto Exp roberto $ ## $Id: makefile,v 1.14 1999/01/08 16:47:44 roberto Exp roberto $
## Makefile ## Makefile
## See Copyright Notice in lua.h ## See Copyright Notice in lua.h
# #
@ -30,6 +30,10 @@ CWARNS = -Wall -Wmissing-prototypes -Wshadow -pedantic -Wpointer-arith -Wcast-al
CFLAGS = $(CONFIG) $(CWARNS) -ansi -O2 CFLAGS = $(CONFIG) $(CWARNS) -ansi -O2
# To make early versions
CO_OPTIONS =
AR = ar AR = ar
ARFLAGS = rvl ARFLAGS = rvl
@ -82,14 +86,14 @@ clear :
rcsclean rcsclean
rm -f *.o rm -f *.o
rm -f rm -f
co lua.h lualib.h luadebug.h co $(CO_OPTIONS) lua.h lualib.h luadebug.h
%.h : RCS/%.h,v %.h : RCS/%.h,v
co $@ co $(CO_OPTIONS) $@
%.c : RCS/%.c,v %.c : RCS/%.c,v
co $@ co $(CO_OPTIONS) $@
lapi.o: lapi.c lapi.h lua.h lobject.h lauxlib.h ldo.h lstate.h lfunc.h \ lapi.o: lapi.c lapi.h lua.h lobject.h lauxlib.h ldo.h lstate.h lfunc.h \