summaryrefslogtreecommitdiff
path: root/sqlite-3.7.2/Makefile.W32
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2010-09-06 15:26:43 +0200
committerAndreas Baumann <abaumann@yahoo.com>2010-09-06 15:26:43 +0200
commite10a5727f4178d6e31b252e49389b7dd86bdbbc4 (patch)
tree6aaf44c30fd74ff0f62bbeba6fcbe37952863ebc /sqlite-3.7.2/Makefile.W32
parentbe37b80bf42b4547991f59dad55c295570318d61 (diff)
downloadsqlitexx-e10a5727f4178d6e31b252e49389b7dd86bdbbc4.tar.gz
sqlitexx-e10a5727f4178d6e31b252e49389b7dd86bdbbc4.tar.bz2
updated sqlite on windows from 3.7.1 to 3.7.2
Diffstat (limited to 'sqlite-3.7.2/Makefile.W32')
-rw-r--r--sqlite-3.7.2/Makefile.W3232
1 files changed, 32 insertions, 0 deletions
diff --git a/sqlite-3.7.2/Makefile.W32 b/sqlite-3.7.2/Makefile.W32
new file mode 100644
index 0000000..5bb8070
--- /dev/null
+++ b/sqlite-3.7.2/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: