From b4eed85c20a35f821a34f491659ad7604a68c3e8 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Wed, 14 Apr 2010 21:42:34 +0200 Subject: update integrated Windows sqlite to 3.6.23.1 added config.mk for windows, so we can set the sqlite version and the location of the Windows platform SDK in one place --- sqlite-3.6.23.1/Makefile.W32 | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 sqlite-3.6.23.1/Makefile.W32 (limited to 'sqlite-3.6.23.1/Makefile.W32') diff --git a/sqlite-3.6.23.1/Makefile.W32 b/sqlite-3.6.23.1/Makefile.W32 new file mode 100644 index 0000000..5bb8070 --- /dev/null +++ b/sqlite-3.6.23.1/Makefile.W32 @@ -0,0 +1,32 @@ +TOPDIR = .. + +SUBDIRS = + +INCLUDE_DIRS = \ + /I. \ + /D_WIN32_WINNT=0x400 /I"$(PLATFORM_SDK_DIR)\Include" + +BINS = + +LIBRARIES = \ + sqlite3.lib + + +OBJS = \ + sqlite3.obj + +local_all: $(LIBRARIES) + +!INCLUDE $(TOPDIR)\makefiles\nmake\sub.mk + +sqlite3.lib: $(OBJS) + $(LINK) /lib /nologo /out:$@ $(LDFLAGS) $(LIBS) $? + +local_all: + +local_clean: + @-erase $(LIBRARIES) 2>NUL + +local_distclean: + +local_test: -- cgit v1.2.3-54-g00ecf