diff options
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) | ||