forked from gnachman/iTerm2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
73 lines (57 loc) · 1.85 KB
/
Makefile
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
PATH := /usr/bin:/bin:/usr/sbin:/sbin
ORIG_PATH := $(PATH)
PATH := /usr/bin:/bin:/usr/sbin:/sbin
ITERM_PID=$(shell pgrep "iTerm")
APPS := /Applications
ITERM_CONF_PLIST = $(HOME)/Library/Preferences/com.googlecode.iterm2.plist
COMPACTDATE=$(shell date +"%Y%m%d")
VERSION = $(shell cat version.txt | sed -e "s/%(extra)s/$(COMPACTDATE)/")
NAME=$(shell echo $(VERSION) | sed -e "s/\\./_/g")
.PHONY: clean all backup-old-iterm restart
all: Development
dev: Development
prod: Deployment
debug: Development
/Developer/usr/bin/gdb build/Development/iTerm.app/Contents/MacOS/iTerm
TAGS:
find . -name "*.[mhMH]" -exec etags -o ./TAGS -a '{}' +
install: | Deployment backup-old-iterm
cp -r build/Deployment/iTerm.app $(APPS)
Development:
echo "Using PATH for build: $(PATH)"
xcodebuild -parallelizeTargets -alltargets -configuration Development && \
chmod -R go+rX build/Development
Dep:
xcodebuild -parallelizeTargets -alltargets -configuration Deployment
Deployment:
xcodebuild -parallelizeTargets -alltargets -configuration Deployment && \
chmod -R go+rX build/Deployment
run: Development
build/Development/iTerm.app/Contents/MacOS/iTerm
devzip: Development
cd build/Development && \
zip -r iTerm2-$(NAME).zip iTerm.app
zip: Deployment
cd build/Deployment && \
zip -r iTerm2-$(NAME).zip iTerm.app
clean:
xcodebuild -parallelizeTargets -alltargets clean
rm -rf build
rm -f *~
backup-old-iterm:
if [[ -d $(APPS)/iTerm.app.bak ]] ; then rm -fr $(APPS)/iTerm.app.bak ; fi
if [[ -d $(APPS)/iTerm.app ]] ; then \
/bin/mv $(APPS)/iTerm.app $(APPS)/iTerm.app.bak ;\
cp $(ITERM_CONF_PLIST) $(APPS)/iTerm.app.bak/Contents/ ; \
fi
restart:
PATH=$(ORIG_PATH) /usr/bin/open /Applications/iTerm.app &
/bin/kill -TERM $(ITERM_PID)
canary:
cp canary-iTerm.plist iTerm.plist
make Deployment
./canary.sh
release:
cp release-iTerm.plist iTerm.plist
make Deployment
./release.sh