Untested makefile for firebird module
This commit is contained in:
parent
afb703aea3
commit
e4951a2b36
28
Makefile.win.firebird
Normal file
28
Makefile.win.firebird
Normal file
@ -0,0 +1,28 @@
|
||||
LUA_INC=c:\lua5.1\include
|
||||
LUA_DIR=c:\lua5.1\lua
|
||||
LUA_LIBDIR=c:\lua5.1
|
||||
LUA_LIB=c:\lua5.1\lua5.1.lib
|
||||
|
||||
T=firebird
|
||||
|
||||
DRIVER_INCLUDE=
|
||||
DRIVER_LIBS=fbclient_ms.lib
|
||||
|
||||
OBJS= src\luasql.obj src\ls_$T.obj
|
||||
|
||||
.c.obj:
|
||||
cl /c /Fo$@ /O2 /I$(LUA_INC) /D_CRT_SECURE_NO_DEPRECATE $(DRIVER_INCLUDE) $<
|
||||
|
||||
src\$T.dll: $(OBJS)
|
||||
link /dll /def:src\$T.def /out:$@ $(OBJS) $(DRIVER_LIBS) $(LUA_LIB)
|
||||
|
||||
install:
|
||||
IF NOT EXIST $(LUA_LIBDIR)\luasql mkdir $(LUA_LIBDIR)\luasql
|
||||
copy src\$T.dll $(LUA_LIBDIR)\luasql
|
||||
|
||||
clean:
|
||||
del src\$T.dll
|
||||
del src\$T.exp
|
||||
del src\$T.lib
|
||||
del $(OBJS)
|
||||
|
Loading…
x
Reference in New Issue
Block a user