Dropped Lua 5.0 support.

This commit is contained in:
mascarenhas
2006-12-04 15:28:53 +00:00
parent 5100f420b7
commit 67c2187e9a
5 changed files with 47 additions and 26 deletions

22
Makefile.win Normal file
View File

@@ -0,0 +1,22 @@
# $Id: Makefile.win,v 1.1 2006/12/04 15:28:53 mascarenhas Exp $
T= lfs
V= 1.2.1
CONFIG= ./config.win
include $(CONFIG)
SRCS= src/$T.c
OBJS= src/$T.obj
lib: src/$(LIBNAME)
src/$(LIBNAME): $(OBJS)
link /dll /out:src/$(LIBNAME) $(OBJS) $(LUA_LIB)
install: src/$(LIBNAME)
mkdir -p $(LUA_LIBDIR)
copy src/$(LIBNAME) $(LUA_LIBDIR)
clean:
del src/$(LIBNAME) $(OBJS)