aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/PostgresKit/Makefile
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2012-09-08 11:50:33 +0000
committerstuconnolly <stuart02@gmail.com>2012-09-08 11:50:33 +0000
commit9f9b1599232e2a93ee910b6a2888f911eedead70 (patch)
treec7f344dc0b52d8ffcd5ca6d50337eb5b58305505 /Frameworks/PostgresKit/Makefile
parentf7df6d3700bac8181e2258a9df28a32153124c46 (diff)
downloadsequelpro-9f9b1599232e2a93ee910b6a2888f911eedead70.tar.gz
sequelpro-9f9b1599232e2a93ee910b6a2888f911eedead70.tar.bz2
sequelpro-9f9b1599232e2a93ee910b6a2888f911eedead70.zip
Add Tests directory, make file and test data SQL script.
Diffstat (limited to 'Frameworks/PostgresKit/Makefile')
-rw-r--r--Frameworks/PostgresKit/Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/Frameworks/PostgresKit/Makefile b/Frameworks/PostgresKit/Makefile
new file mode 100644
index 00000000..8a01c273
--- /dev/null
+++ b/Frameworks/PostgresKit/Makefile
@@ -0,0 +1,27 @@
+# $Id$
+
+CONFIG=Debug
+OPTIONS=
+
+BUILD_CONFIG?=$(CONFIG)
+
+CP=ditto --rsrc
+RM=rm
+
+.PHONY: postgreskit test clean clean-all latest
+
+querykit:
+ xcodebuild -project PostgresKit.xcodeproj -configuration "$(BUILD_CONFIG)" CFLAGS="$(SP_CFLAGS)" $(OPTIONS) build
+
+test:
+ xcodebuild -project PostgresKit.xcodeproj -configuration "$(BUILD_CONFIG)" CFLAGS="$(SP_CFLAGS)" -target Tests $(OPTIONS) build
+
+clean:
+ xcodebuild -project PostgresKit.xcodeproj -configuration "$(BUILD_CONFIG)" $(OPTIONS) -nodependencies clean
+
+clean-all:
+ xcodebuild -project PostgresKit.xcodeproj -configuration "$(BUILD_CONFIG)" $(OPTIONS) clean
+
+latest:
+ svn update
+ make postgreskit \ No newline at end of file