aboutsummaryrefslogtreecommitdiff
path: root/Makefile.win
diff options
context:
space:
mode:
authormascarenhas <mascarenhas>2006-12-04 15:28:53 +0000
committermascarenhas <mascarenhas>2006-12-04 15:28:53 +0000
commit67c2187e9af4ca88aa864667a54502d01e01ddbd (patch)
treeb2e4d3344eff8aa11e4113a6bab820d17985589f /Makefile.win
parent5100f420b7e17298c973df021d0f9527739c6901 (diff)
downloadluafilesystem-67c2187e9af4ca88aa864667a54502d01e01ddbd.tar.gz
luafilesystem-67c2187e9af4ca88aa864667a54502d01e01ddbd.tar.bz2
luafilesystem-67c2187e9af4ca88aa864667a54502d01e01ddbd.zip
Dropped Lua 5.0 support.
Diffstat (limited to 'Makefile.win')
-rw-r--r--Makefile.win22
1 files changed, 22 insertions, 0 deletions
diff --git a/Makefile.win b/Makefile.win
new file mode 100644
index 0000000..b9cddc8
--- /dev/null
+++ b/Makefile.win
@@ -0,0 +1,22 @@
1# $Id: Makefile.win,v 1.1 2006/12/04 15:28:53 mascarenhas Exp $
2
3T= lfs
4V= 1.2.1
5CONFIG= ./config.win
6
7include $(CONFIG)
8
9SRCS= src/$T.c
10OBJS= src/$T.obj
11
12lib: src/$(LIBNAME)
13
14src/$(LIBNAME): $(OBJS)
15 link /dll /out:src/$(LIBNAME) $(OBJS) $(LUA_LIB)
16
17install: src/$(LIBNAME)
18 mkdir -p $(LUA_LIBDIR)
19 copy src/$(LIBNAME) $(LUA_LIBDIR)
20
21clean:
22 del src/$(LIBNAME) $(OBJS)