blob: 64e1ca607f090bdf5a8fcd958926dd95c0f23a85 (
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
96
97
98
99
100
|
################################################################################
#
# Simple makefile for building on Mac OS X with the
# Project Builder command line tool 'pbxbuild'
#
# RCS: @(#) $Id: Makefile,v 1.4 2002/09/26 17:07:33 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 = DYLIB_INSTALL_PATH="@executable_path/../Frameworks"
################################################################################
all: develop deploy
install: install-develop install-deploy
embedded: embedded-deploy
install-embedded: install-embedded-deploy cleanup-embedded forceRelink forceRelinkTcl
clean: clean-develop clean-deploy
################################################################################
develop:
${DEVBUILD}
deploy:
${DEPBUILD}
install-develop:
${DEVBUILD} install ${INSTALLOPTS}
install-deploy:
${DEPBUILD} install ${INSTALLOPTS}
embedded-develop: forceRelink
${DEVBUILD} ${EMBEDDEDOPTS}
embedded-deploy: forceRelink
${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
forceRelinkTcl:
@-cd ${BUILD_DIR}; \
rm -rf Tcl.framework tclsh8.4 \
Development.build/Tcl.build/Tcl Deployment.build/Tcl.build/Tcl
cleanup-embedded:
@-cd ${INSTALL_ROOT}; \
rm -f Frameworks; \
rm -rf @executable_path; \
rm -rf Library/Frameworks/Tcl.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
################################################################################
|