Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
6403d284
Commit
6403d284
authored
Jan 20, 1995
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
define INSTALL_PROGRAM and INSTALL_DATA
parent
5739e7ec
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
12 deletions
+14
-12
Makefile.in
Makefile.in
+14
-12
No files found.
Makefile.in
View file @
6403d284
...
...
@@ -28,6 +28,8 @@
srcdir
=
@srcdir@
VPATH
=
@srcdir@
INSTALL
=
@INSTALL@
INSTALL_PROGRAM
=
@INSTALL_PROGRAM@
INSTALL_DATA
=
@INSTALL_DATA@
RANLIB
=
@RANLIB@
# Machine-dependent subdirectories
...
...
@@ -94,7 +96,7 @@ test: python
# Install the interpreter
install
:
python
$(INSTALL)
python
$(BINDIR)
/python
$(INSTALL
_PROGRAM
)
python
$(BINDIR)
/python
@
echo
If this is your first
time
, consider make libinstall...
# Install the library.
...
...
@@ -108,11 +110,11 @@ libinstall:
cp
-r
$(srcdir)
/Lib/
*
$(LIBDEST)
PYTHONPATH
=
$(LIBDEST)
\
./python
$(LIBDEST)
/compileall.py
$(LIBDEST)
cd
Modules
;
make
sharedinstall
$(MAKE)
sharedinstall
# install the manual page
maninstall
:
$(INSTALL)
$(srcdir)
/Misc/python.man
\
$(INSTALL
_DATA
)
$(srcdir)
/Misc/python.man
\
$(MANDIR)
/man1/python.1
# install the include files
...
...
@@ -121,7 +123,7 @@ inclinstall:
-
if
test
!
-d
$(INCLUDEPY)
;
\
then
mkdir
$(INCLUDEPY)
;
\
fi
cp
$(srcdir)
/Include/
*
.h
$(INCLUDEPY)
$(INSTALL_DATA)
$(srcdir)
/Include/
*
.h
$(INCLUDEPY)
# install the lib*.a files and miscellaneous stuff needed by extensions
LIBP
=
$(LIBDIR)
/python
...
...
@@ -134,16 +136,16 @@ libainstall: all
then
mkdir
$(LIBPL)
;
\
fi
for
i
in
$(SUBDIRS)
;
do
\
echo
$$
i
;
$(INSTALL)
$$
i/lib
$$
i.a
$(LIBPL)
/lib
$$
i.a
;
\
echo
$$
i
;
$(INSTALL
_DATA
)
$$
i/lib
$$
i.a
$(LIBPL)
/lib
$$
i.a
;
\
$(RANLIB)
$(LIBPL)
/lib
$$
i.a
;
\
done
$(INSTALL)
Modules/config.c
$(LIBPL)
/config.c
$(INSTALL)
$(srcdir)
/Modules/config.c.in
$(LIBPL)
/config.c.in
$(INSTALL)
Modules/Makefile
$(LIBPL)
/Makefile
$(INSTALL)
Modules/Setup
$(LIBPL)
/Setup
$(INSTALL)
$(srcdir)
/Modules/makesetup
$(LIBPL)
/makesetup
$(INSTALL)
config.h
$(LIBPL)
/config.h
$(INSTALL)
$(srcdir)
/Python/frozenmain.c
$(LIBPL)
/frozenmain.c
$(INSTALL
_DATA
)
Modules/config.c
$(LIBPL)
/config.c
$(INSTALL
_DATA
)
$(srcdir)
/Modules/config.c.in
$(LIBPL)
/config.c.in
$(INSTALL
_DATA
)
Modules/Makefile
$(LIBPL)
/Makefile
$(INSTALL
_DATA
)
Modules/Setup
$(LIBPL)
/Setup
$(INSTALL
_DATA
)
$(srcdir)
/Modules/makesetup
$(LIBPL)
/makesetup
$(INSTALL
_DATA
)
config.h
$(LIBPL)
/config.h
$(INSTALL
_DATA
)
$(srcdir)
/Python/frozenmain.c
$(LIBPL)
/frozenmain.c
# install the dynamically loadable modules
sharedinstall
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment