summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2009-06-09 18:10:02 (GMT)
committerRemko Tronçon <git@el-tramo.be>2009-06-09 18:10:02 (GMT)
commite184b232ae7d6b9b77eed4a454d15eaf93dd7c5b (patch)
treec35e0f687abc5236e84073dccc22e773fc0c7d23 /3rdParty/SQLite/Makefile.inc
parent5d2d0285a9819c3b1276e005299c86279419a0f0 (diff)
downloadswift-e184b232ae7d6b9b77eed4a454d15eaf93dd7c5b.zip
swift-e184b232ae7d6b9b77eed4a454d15eaf93dd7c5b.tar.bz2
Added SQLite to 3rdParty.
Diffstat (limited to '3rdParty/SQLite/Makefile.inc')
-rw-r--r--3rdParty/SQLite/Makefile.inc11
1 files changed, 11 insertions, 0 deletions
diff --git a/3rdParty/SQLite/Makefile.inc b/3rdParty/SQLite/Makefile.inc
new file mode 100644
index 0000000..339e7a0
--- /dev/null
+++ b/3rdParty/SQLite/Makefile.inc
@@ -0,0 +1,11 @@
+SQLITE_CPPFLAGS += -isystem 3rdParty/SQLite
+
+SQLITE_SOURCES = \
+ 3rdParty/SQLite/sqlite3.c
+
+SQLITE_OBJECTS = \
+ $(SQLITE_SOURCES:.c=.o)
+
+CLEANFILES += \
+ $(SQLITE_OBJECTS) \
+ $(SQLITE_TARGET)