diff options
author | Stuart Connolly <stuart02@gmail.com> | 2014-01-19 00:17:42 +0000 |
---|---|---|
committer | Stuart Connolly <stuart02@gmail.com> | 2014-01-19 00:17:42 +0000 |
commit | 7bbf00e315d4fc45eb3a54e256f2aeb3ea379d21 (patch) | |
tree | 982437ba510aff61e1344f0b36093adf78f31b24 /Frameworks/PostgresKit/Makefile | |
parent | 1ee5c3517856bcad6c51f525af7fd8f84bd6d12e (diff) | |
download | sequelpro-7bbf00e315d4fc45eb3a54e256f2aeb3ea379d21.tar.gz sequelpro-7bbf00e315d4fc45eb3a54e256f2aeb3ea379d21.tar.bz2 sequelpro-7bbf00e315d4fc45eb3a54e256f2aeb3ea379d21.zip |
Fix make files and running tests.
Diffstat (limited to 'Frameworks/PostgresKit/Makefile')
-rw-r--r-- | Frameworks/PostgresKit/Makefile | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/Frameworks/PostgresKit/Makefile b/Frameworks/PostgresKit/Makefile index 8a01c273..daabf526 100644 --- a/Frameworks/PostgresKit/Makefile +++ b/Frameworks/PostgresKit/Makefile @@ -8,20 +8,16 @@ BUILD_CONFIG?=$(CONFIG) CP=ditto --rsrc RM=rm -.PHONY: postgreskit test clean clean-all latest +.PHONY: postgreskit test analyze clean querykit: - xcodebuild -project PostgresKit.xcodeproj -configuration "$(BUILD_CONFIG)" CFLAGS="$(SP_CFLAGS)" $(OPTIONS) build + xcodebuild -project PostgresKit.xcodeproj -configuration "$(BUILD_CONFIG)" CFLAGS="$(PGK_CFLAGS)" $(OPTIONS) build test: - xcodebuild -project PostgresKit.xcodeproj -configuration "$(BUILD_CONFIG)" CFLAGS="$(SP_CFLAGS)" -target Tests $(OPTIONS) build + xcodebuild -project PostgresKit.xcodeproj -scheme "PostgresKit" -configuration "$(BUILD_CONFIG)" CFLAGS="$(PGK_CFLAGS)" $(OPTIONS) test -clean: - xcodebuild -project PostgresKit.xcodeproj -configuration "$(BUILD_CONFIG)" $(OPTIONS) -nodependencies clean +analyze: + xcodebuild -project PostgresKit.xcodeproj -scheme "PostgresKit" -configuration "$(BUILD_CONFIG)" CFLAGS="$(PGK_CFLAGS)" $(OPTIONS) analyze -clean-all: +clean: xcodebuild -project PostgresKit.xcodeproj -configuration "$(BUILD_CONFIG)" $(OPTIONS) clean - -latest: - svn update - make postgreskit
\ No newline at end of file |