Nicos sqlite interface

This commit is contained in:
Vítor Santos Costa
2014-07-15 18:56:45 -05:00
parent 4d7b270ce4
commit 3268920dc8
9 changed files with 1994 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
SOBJ= $(PACKSODIR)/prosqlite.$(SOEXT)
CFLAGS+=-std=c99
LIBS= -lsqlite3
all: $(SOBJ)
$(SOBJ): c/prosqlite.o
mkdir -p $(PACKSODIR)
$(LD) $(LDSOFLAGS) -o $@ $(SWISOLIB) $< $(LIBS)
check::
install::
clean:
rm -f c/prosqlite.o
distclean: clean
rm -f $(SOBJ)