Nicos sqlite interface
This commit is contained in:
16
packages/prosqlite/Makefile
Normal file
16
packages/prosqlite/Makefile
Normal 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)
|
Reference in New Issue
Block a user