diff options
author | mascarenhas <mascarenhas> | 2006-12-04 15:28:53 +0000 |
---|---|---|
committer | mascarenhas <mascarenhas> | 2006-12-04 15:28:53 +0000 |
commit | 67c2187e9af4ca88aa864667a54502d01e01ddbd (patch) | |
tree | b2e4d3344eff8aa11e4113a6bab820d17985589f /Makefile.win | |
parent | 5100f420b7e17298c973df021d0f9527739c6901 (diff) | |
download | luafilesystem-67c2187e9af4ca88aa864667a54502d01e01ddbd.tar.gz luafilesystem-67c2187e9af4ca88aa864667a54502d01e01ddbd.tar.bz2 luafilesystem-67c2187e9af4ca88aa864667a54502d01e01ddbd.zip |
Dropped Lua 5.0 support.
Diffstat (limited to 'Makefile.win')
-rw-r--r-- | Makefile.win | 22 |
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 | |||
3 | T= lfs | ||
4 | V= 1.2.1 | ||
5 | CONFIG= ./config.win | ||
6 | |||
7 | include $(CONFIG) | ||
8 | |||
9 | SRCS= src/$T.c | ||
10 | OBJS= src/$T.obj | ||
11 | |||
12 | lib: src/$(LIBNAME) | ||
13 | |||
14 | src/$(LIBNAME): $(OBJS) | ||
15 | link /dll /out:src/$(LIBNAME) $(OBJS) $(LUA_LIB) | ||
16 | |||
17 | install: src/$(LIBNAME) | ||
18 | mkdir -p $(LUA_LIBDIR) | ||
19 | copy src/$(LIBNAME) $(LUA_LIBDIR) | ||
20 | |||
21 | clean: | ||
22 | del src/$(LIBNAME) $(OBJS) | ||