-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathMakefile
More file actions
33 lines (21 loc) · 700 Bytes
/
Makefile
File metadata and controls
33 lines (21 loc) · 700 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
30
31
32
PREFIX?=
BUILD_DIR?=$(shell defaults read com.apple.Xcode PBXProductDirectory 2> /dev/null)
ifeq ($(strip $(BUILD_DIR)),)
BUILD_DIR=build
endif
DEFAULT_BUILDCONFIGURATION=Deployment
DEFAULT_TARGET=PerianPane
BUILDCONFIGURATION?=$(DEFAULT_BUILDCONFIGURATION)
CP=ditto --rsrc
RM=rm
.PHONY: all perian clean latest
perian:
xcodebuild -project Perian.xcodeproj -target $(DEFAULT_TARGET) -configuration $(BUILDCONFIGURATION) build
#install:
# cp -R build/Adium.app ~/Applications/
# cp -R build/AIUtilities.framework ~/Library/Frameworks/
clean:
xcodebuild -project Perian.xcodeproj -target $(DEFAULT_TARGET) -configuration $(BUILDCONFIGURATION) clean
latest:
svn up
make perian