mirror of
https://github.com/lunarmodules/luafilesystem.git
synced 2026-07-22 02:53:06 +00:00
22 lines
390 B
Makefile
22 lines
390 B
Makefile
# $Id: Makefile.win,v 1.2 2006/12/04 18:24:18 mascarenhas Exp $
|
|
|
|
T= lfs
|
|
V= 1.2.1
|
|
|
|
include config.win
|
|
|
|
SRCS= src\$T.c
|
|
OBJS= src\$T.obj
|
|
|
|
lib: src\$(LIBNAME)
|
|
|
|
src\$(LIBNAME): $(OBJS)
|
|
link /dll /def:src\$T.def /out:src\$(LIBNAME) $(OBJS) $(LUA_LIB)
|
|
|
|
install: src\$(LIBNAME)
|
|
IF NOT EXIST $(LUA_LIBDIR) mkdir $(LUA_LIBDIR)
|
|
copy src\$(LIBNAME) $(LUA_LIBDIR)
|
|
|
|
clean:
|
|
del src\$(LIBNAME) $(OBJS)
|