diff options
author | stuconnolly <stuart02@gmail.com> | 2012-05-07 14:04:58 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2012-05-07 14:04:58 +0000 |
commit | c2fc87167b086680aa8b7190e497e834413bfc7d (patch) | |
tree | e5ea54b91ef0bc42b0b9f868f4ad614fc1504de7 /Frameworks/QueryKit/Makefile | |
parent | b02a815e440ab1b7ed78bb70833e55f69a128a4a (diff) | |
download | sequelpro-c2fc87167b086680aa8b7190e497e834413bfc7d.tar.gz sequelpro-c2fc87167b086680aa8b7190e497e834413bfc7d.tar.bz2 sequelpro-c2fc87167b086680aa8b7190e497e834413bfc7d.zip |
Update make files to support accepting xcode default settings.
Diffstat (limited to 'Frameworks/QueryKit/Makefile')
-rw-r--r-- | Frameworks/QueryKit/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Frameworks/QueryKit/Makefile b/Frameworks/QueryKit/Makefile new file mode 100644 index 00000000..d6322e51 --- /dev/null +++ b/Frameworks/QueryKit/Makefile @@ -0,0 +1,27 @@ +# $Id$ + +CONFIG=Debug +OPTIONS= + +BUILD_CONFIG?=$(CONFIG) + +CP=ditto --rsrc +RM=rm + +.PHONY: querykit test clean clean-all latest + +querykit: + xcodebuild -project QueryKit.xcodeproj -configuration "$(BUILD_CONFIG)" CFLAGS="$(SP_CFLAGS)" $(OPTIONS) build + +test: + xcodebuild -project QueryKit.xcodeproj -configuration "$(BUILD_CONFIG)" CFLAGS="$(SP_CFLAGS)" -target Tests $(OPTIONS) build + +clean: + xcodebuild -project QueryKit.xcodeproj -configuration "$(BUILD_CONFIG)" $(OPTIONS) -nodependencies clean + +clean-all: + xcodebuild -project QueryKit.xcodeproj -configuration "$(BUILD_CONFIG)" $(OPTIONS) clean + +latest: + svn update + make querykit |