FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cpython/Mac/PythonLauncher/Makefile.in at main · https-github-com-nzysoft/cpython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
https-github-com-nzysoft
/
cpython
Public
forked from
python/cpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cpython
/
Mac
/
PythonLauncher
/
Makefile.in
Copy path
More file actions
More file actions
Latest commit
History
History
History
78 lines (64 loc) · 3.01 KB
Breadcrumbs
cpython
/
Mac
/
PythonLauncher
/
Makefile.in
Copy path
File metadata and controls
78 lines (64 loc) · 3.01 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
CC
=@CC@
LD
=@CC@
BASECFLAGS
=@BASECFLAGS@
OPT
=@OPT@
CFLAGS
=@CFLAGS@
$(
BASECFLAGS
)
$(
OPT
)
LDFLAGS
=@LDFLAGS@
srcdir
= @srcdir@
VERSION
= @VERSION@
UNIVERSALSDK
=@UNIVERSALSDK@
builddir
= ../..
RUNSHARED
= @RUNSHARED@
BUILDEXE
= @BUILDEXEEXT@
BUILDPYTHON
=
$(
builddir
)
/python
$(
BUILDEXE
)
PYTHONFRAMEWORK
=@PYTHONFRAMEWORK@
#
Deployment target selected during configure, to be checked
#
by distutils
MACOSX_DEPLOYMENT_TARGET
=@CONFIGURE_MACOSX_DEPLOYMENT_TARGET@
@EXPORT_MACOSX_DEPLOYMENT_TARGET@export MACOSX_DEPLOYMENT_TARGET
PYTHONAPPSDIR
=@FRAMEWORKINSTALLAPPSPREFIX@/
$(
PYTHONFRAMEWORK
)
$(
VERSION
)
OBJECTS
=FileSettings.o MyAppDelegate.o MyDocument.o PreferencesWindowController.o doscript.o main.o
install
: Python\ Launcher.app
test
-d
"
$(
DESTDIR
)
$(
PYTHONAPPSDIR
)
"
||
mkdir -p
"
$(
DESTDIR
)
$(
PYTHONAPPSDIR
)
"
-test -d
"
$(
DESTDIR
)
$(
PYTHONAPPSDIR
)
/Python Launcher.app
"
&&
rm -r
"
$(
DESTDIR
)
$(
PYTHONAPPSDIR
)
/Python Launcher.app
"
/bin/cp -r
"
Python Launcher.app
"
"
$(
DESTDIR
)
$(
PYTHONAPPSDIR
)
"
touch
"
$(
DESTDIR
)
$(
PYTHONAPPSDIR
)
/Python Launcher.app
"
chmod -R ugo+rX,go-w
"
$(
DESTDIR
)
$(
PYTHONAPPSDIR
)
/Python Launcher.app
"
chmod ugo+x
"
$(
DESTDIR
)
$(
PYTHONAPPSDIR
)
/Python Launcher.app/Contents/MacOS/Python Launcher
"
clean
:
rm -f
*
.o
"
Python Launcher
"
rm -rf
"
Python Launcher.app
"
rm -f Info.plist
Python\
Launcher.app
: Info.plist
\
Python
\
Launcher
$(
srcdir
)
/../Icons/PythonLauncher.icns
\
$(
srcdir
)
/../Icons/PythonSource.icns
\
$(
srcdir
)
/../Icons/PythonCompiled.icns
\
$(
srcdir
)
/factorySettings.plist
rm -fr
"
Python Launcher.app
"
mkdir
"
Python Launcher.app
"
mkdir
"
Python Launcher.app/Contents
"
mkdir
"
Python Launcher.app/Contents/MacOS
"
mkdir
"
Python Launcher.app/Contents/Resources
"
cp
"
Python Launcher
"
"
Python Launcher.app/Contents/MacOS
"
cp Info.plist
"
Python Launcher.app/Contents
"
cp
$(
srcdir
)
/../Icons/PythonLauncher.icns
"
Python Launcher.app/Contents/Resources
"
cp
$(
srcdir
)
/../Icons/PythonSource.icns
"
Python Launcher.app/Contents/Resources
"
cp
$(
srcdir
)
/../Icons/PythonCompiled.icns
"
Python Launcher.app/Contents/Resources
"
cp
$(
srcdir
)
/factorySettings.plist
"
Python Launcher.app/Contents/Resources
"
cp -R
$(
srcdir
)
/English.lproj
"
Python Launcher.app/Contents/Resources
"
FileSettings.o
:
$(
srcdir
)
/FileSettings.m
$(
CC
)
$(
CFLAGS
)
-o
$@
-c
$(
srcdir
)
/FileSettings.m
MyAppDelegate.o
:
$(
srcdir
)
/MyAppDelegate.m
$(
CC
)
$(
CFLAGS
)
-o
$@
-c
$(
srcdir
)
/MyAppDelegate.m
MyDocument.o
:
$(
srcdir
)
/MyDocument.m
$(
CC
)
$(
CFLAGS
)
-o
$@
-c
$(
srcdir
)
/MyDocument.m
PreferencesWindowController.o
:
$(
srcdir
)
/PreferencesWindowController.m
$(
CC
)
$(
CFLAGS
)
-o
$@
-c
$(
srcdir
)
/PreferencesWindowController.m
doscript.o
:
$(
srcdir
)
/doscript.m
$(
CC
)
$(
CFLAGS
)
-o
$@
-c
$(
srcdir
)
/doscript.m
main.o
:
$(
srcdir
)
/main.m
$(
CC
)
$(
CFLAGS
)
-o
$@
-c
$(
srcdir
)
/main.m
Python\
Launcher
:
$(
OBJECTS
)
$(
CC
)
$(
LDFLAGS
)
-o
"
Python Launcher
"
$(
OBJECTS
)
-framework AppKit -framework Carbon
Info.plist
:
$(
srcdir
)
/Info.plist.in
sed
'
s/%VERSION%/
'
"
`
$(
RUNSHARED
)
$(
BUILDPYTHON
)
-c
'
import platform; print(platform.python_version())
'
`
"
'
/g
'
<
$(
srcdir
)
/Info.plist.in
>
Info.plist
Back
|
FazBrowse Home
|
New Git URL