Correcao no "make clean" e atualizacao do README.
This commit is contained in:
parent
095df96c20
commit
ad01f2b0e4
8
Makefile
8
Makefile
@ -27,6 +27,9 @@ PG_SO= libluasqlpostgres.2.0.so
|
||||
PG_DYLIB= libluasqlpostgres.2.0.dylib
|
||||
ODBC_DLL= luasqlodbc.2.0.dll
|
||||
|
||||
dist:
|
||||
cd ..; tar -czf luasql-2.0.tar.gz $(SRCS)
|
||||
|
||||
pglinux: $(PG_LIB) $(PG_SO)
|
||||
sed "s/LIB_NAME/$(PG_SO)/" postgres.tmpl > postgres.lua
|
||||
|
||||
@ -36,9 +39,6 @@ pgmac: $(PG_LIB) $(PG_DYLIB)
|
||||
odbcwin:
|
||||
sed "s/LIB_NAME/$(ODBC_DLL)/" odbc.tmpl > odbc.lua
|
||||
|
||||
dist:
|
||||
cd ..; tar -czf luasql-2.0.tar.gz $(SRCS)
|
||||
|
||||
$(PG_LIB): $(LS_OBJ) $(PG_OBJ)
|
||||
$(AR) $@ $(LS_OBJ) $(PG_OBJ)
|
||||
$(RANLIB) $@
|
||||
@ -50,4 +50,4 @@ $(PG_DYLIB): $(LS_OBJ) $(PG_OBJ)
|
||||
gcc -o $@ -dynamiclib $(LS_OBJ) $(PG_OBJ) $(LIBS_DIR) $(LIBS)
|
||||
|
||||
clean:
|
||||
rm -f $(LS_OBJ) $(ODBC_OBJ) $(PG_OBJ) $(PG_LIB) $(ODBC_LIB) $(PG_DYLIB)
|
||||
rm -f $(LS_OBJ) $(ODBC_OBJ) $(PG_OBJ) $(PG_LIB) $(ODBC_LIB) $(PG_DYLIB) postgres.lua odbc.lua
|
||||
|
13
README
13
README
@ -3,19 +3,22 @@ functionality available in any database manager.
|
||||
|
||||
Here goes a small description of the files in the distribution
|
||||
|
||||
index.html -- Home page
|
||||
ls_odbc.c -- ODBC driver (source)
|
||||
ls_odbc.def -- ODBC driver (.def)
|
||||
ls_odbc.h -- ODBC driver (header)
|
||||
ls_pg.c -- PostgreSQL driver (source)
|
||||
ls_pg.def -- PostgreSQL driver (.def)
|
||||
ls_pg.h -- PostgreSQL driver (header)
|
||||
lua.png -- Lua Logo
|
||||
luasql.c -- Common functions
|
||||
luasql.h -- Common definitions
|
||||
Makefile -- Makefile for Unix systems
|
||||
manual.html -- API manual
|
||||
odbc.lua -- ODBC driver (lua)
|
||||
manual.html -- Reference manual
|
||||
odbc.tmpl -- ODBC loader template (.lua)
|
||||
performance.lua -- Performance test script
|
||||
postgres.lua -- PostgreSQL driver (lua)
|
||||
postgres.tmpl -- PostgreSQL loader template (.lua)
|
||||
README -- This file
|
||||
test.lua -- API test script
|
||||
test.lua -- Overall API test script
|
||||
|
||||
$Id: README,v 1.2 2003/04/07 13:41:29 tomas Exp $
|
||||
$Id: README,v 1.3 2003/05/05 10:06:34 tomas Exp $
|
||||
|
Loading…
x
Reference in New Issue
Block a user