blob: c05c4de4876efa185e00566206c37c0a07d3c987 (
plain)
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
################################################################################
#
# Simple makefile for building on Mac OS X with the
# Project Builder command line tool 'pbxbuild'
#
# RCS: @(#) $Id: Makefile,v 1.7 2003/02/19 16:44:16 das Exp $
#
################################################################################
INSTALL_ROOT ?=
BUILD_DIR ?= ${CURDIR}/../../build
TARGET = Wish
DEVBUILDSTYLE = Development
DEPBUILDSTYLE = Deployment
PBXBUILD = /usr/bin/pbxbuild
BUILD = ${PBXBUILD} SYMROOT="${BUILD_DIR}" -target "${TARGET}"
DEVBUILD = ${BUILD} -buildstyle "${DEVBUILDSTYLE}"
DEPBUILD = ${BUILD} -buildstyle "${DEPBUILDSTYLE}"
INSTALLOPTS = INSTALL_ROOT="${INSTALL_ROOT}"
EMBEDDEDOPTS = EMBEDDED_BUILD=1
################################################################################
all: develop deploy
install: install-develop install-deploy
embedded: embedded-deploy
install-embedded: install-embedded-deploy cleanup-embedded
clean: clean-develop clean-deploy
################################################################################
develop:
${DEVBUILD}
deploy:
${DEPBUILD}
install-develop:
${DEVBUILD} install ${INSTALLOPTS}
install-deploy:
${DEPBUILD} install ${INSTALLOPTS}
embedded-develop:
${DEVBUILD} ${EMBEDDEDOPTS}
embedded-deploy:
${DEPBUILD} ${EMBEDDEDOPTS}
install-embedded-develop:
${DEVBUILD} install ${INSTALLOPTS} ${EMBEDDEDOPTS}
install-embedded-deploy:
${DEPBUILD} install ${INSTALLOPTS} ${EMBEDDEDOPTS}
clean-develop:
${DEVBUILD} clean
clean-deploy:
${DEPBUILD} clean
################################################################################
forceRelink:
@-cd ${BUILD_DIR}; \
rm -rf Tk.framework Wish\ Shell.app libtkstub8.4.a
cleanup-embedded:
@-cd ${INSTALL_ROOT}; \
chmod -RH u+w Library/Frameworks/Tcl.framework; \
rm -rf Library/Frameworks/Tcl.framework; \
chmod -RH u+w Library/Frameworks/Tk.framework; \
rm -rf Library/Frameworks/Tk.framework; \
rmdir -p Library/Frameworks 2>&-;
################################################################################
.PHONY: all install embedded clean develop deploy install-develop install-deploy \
embedded-develop embedded-deploy install-embedded-develop install-embedded-deploy \
clean-develop clean-deploy forceRelinkTcl \
cleanup-embedded
################################################################################
|