aboutsummaryrefslogtreecommitdiff
path: root/Makefile.win
diff options
context:
space:
mode:
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)