-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMakefile
More file actions
29 lines (19 loc) · 734 Bytes
/
Makefile
File metadata and controls
29 lines (19 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# $Id$
CONFIG=Debug
BUILD_CONFIG?=$(CONFIG)
CP=ditto --rsrc
RM=rm
.PHONY: sequel-pro test clean clean-all localize latest
sequel-pro:
xcodebuild -project sequel-pro.xcodeproj -configuration "$(BUILD_CONFIG)" CFLAGS="$(SP_CFLAGS)" build
test:
xcodebuild -project sequel-pro.xcodeproj -configuration "$(BUILD_CONFIG)" CFLAGS="$(SP_CFLAGS)" -target "Unit Tests" build
clean:
xcodebuild -project sequel-pro.xcodeproj -configuration "$(BUILD_CONFIG)" -nodependencies clean
clean-all:
xcodebuild -project sequel-pro.xcodeproj -configuration "$(BUILD_CONFIG)" clean
localize:
xcodebuild -project sequel-pro.xcodeproj -configuration "$(BUILD_CONFIG)" CFLAGS="$(SP_CFLAGS)" -target Localize
latest:
svn update
make sequel-pro