]> git.pld-linux.org Git - packages/python-PyGreSQL.git/blame - python-Makefile.pre.in
- translated kloczkish into english
[packages/python-PyGreSQL.git] / python-Makefile.pre.in
CommitLineData
95ce8389 1# Universal Unix Makefile for Python extensions
2# =============================================
3
4# Short Instructions
5# ------------------
6
7# 1. Build and install Python (1.5 or newer).
8# 2. "make -f Makefile.pre.in boot"
9# 3. "make"
10# You should now have a shared library.
11
12# Long Instructions
13# -----------------
14
15# Build *and install* the basic Python 1.5 distribution. See the
16# Python README for instructions. (This version of Makefile.pre.in
17# only withs with Python 1.5, alpha 3 or newer.)
18
19# Create a file Setup.in for your extension. This file follows the
20# format of the Modules/Setup.in file; see the instructions there.
21# For a simple module called "spam" on file "spammodule.c", it can
22# contain a single line:
23# spam spammodule.c
24# You can build as many modules as you want in the same directory --
25# just have a separate line for each of them in the Setup.in file.
26
27# If you want to build your extension as a shared library, insert a
28# line containing just the string
29# *shared*
30# at the top of your Setup.in file.
31
32# Note that the build process copies Setup.in to Setup, and then works
33# with Setup. It doesn't overwrite Setup when Setup.in is changed, so
34# while you're in the process of debugging your Setup.in file, you may
35# want to edit Setup instead, and copy it back to Setup.in later.
36# (All this is done so you can distribute your extension easily and
37# someone else can select the modules they actually want to build by
38# commenting out lines in the Setup file, without editing the
39# original. Editing Setup is also used to specify nonstandard
40# locations for include or library files.)
41
42# Copy this file (Misc/Makefile.pre.in) to the directory containing
43# your extension.
44
45# Run "make -f Makefile.pre.in boot". This creates Makefile
46# (producing Makefile.pre and sedscript as intermediate files) and
47# config.c, incorporating the values for sys.prefix, sys.exec_prefix
48# and sys.version from the installed Python binary. For this to work,
49# the python binary must be on your path. If this fails, try
50# make -f Makefile.pre.in Makefile VERSION=1.5 installdir=<prefix>
51# where <prefix> is the prefix used to install Python for installdir
52# (and possibly similar for exec_installdir=<exec_prefix>).
53
54# Note: "make boot" implies "make clobber" -- it assumes that when you
55# bootstrap you may have changed platforms so it removes all previous
56# output files.
57
58# If you are building your extension as a shared library (your
59# Setup.in file starts with *shared*), run "make" or "make sharedmods"
60# to build the shared library files. If you are building a statically
61# linked Python binary (the only solution of your platform doesn't
62# support shared libraries, and sometimes handy if you want to
63# distribute or install the resulting Python binary), run "make
64# python".
65
66# Note: Each time you edit Makefile.pre.in or Setup, you must run
67# "make Makefile" before running "make".
68
69# Hint: if you want to use VPATH, you can start in an empty
70# subdirectory and say (e.g.):
71# make -f ../Makefile.pre.in boot srcdir=.. VPATH=..
72
73
74# === Bootstrap variables (edited through "make boot") ===
75
76# The prefix used by "make inclinstall libainstall" of core python
77installdir= /usr/local
78
79# The exec_prefix used by the same
80exec_installdir=$(installdir)
81
82# Source directory and VPATH in case you want to use VPATH.
83# (You will have to edit these two lines yourself -- there is no
84# automatic support as the Makefile is not generated by
85# config.status.)
86srcdir= .
87VPATH= .
88
89# === Variables that you may want to customize (rarely) ===
90
91# (Static) build target
92TARGET= python
93
94# Installed python binary (used only by boot target)
95PYTHON= python
96
97# Add more -I and -D options here
98CFLAGS= $(OPT) -I$(INCLUDEPY) -I$(EXECINCLUDEPY) $(DEFS)
99
100# These two variables can be set in Setup to merge extensions.
101# See example[23].
102BASELIB=
103BASESETUP=
104
105# === Variables set by makesetup ===
106
107MODOBJS= _MODOBJS_
108MODLIBS= _MODLIBS_
109
110# === Definitions added by makesetup ===
111
112# === Variables from configure (through sedscript) ===
113
114VERSION= @VERSION@
115CC= @CC@
116LINKCC= @LINKCC@
117SGI_ABI= @SGI_ABI@
118OPT= @OPT@
119LDFLAGS= @LDFLAGS@
120DEFS= @DEFS@
121LIBS= @LIBS@
122LIBM= @LIBM@
123LIBC= @LIBC@
124RANLIB= @RANLIB@
125MACHDEP= @MACHDEP@
126SO= @SO@
127LDSHARED= @LDSHARED@
128CCSHARED= @CCSHARED@
129LINKFORSHARED= @LINKFORSHARED@
130#@SET_CCC@
131
132# Install prefix for architecture-independent files
133prefix= /usr/local
134
135# Install prefix for architecture-dependent files
136exec_prefix= $(prefix)
137
138# === Fixed definitions ===
139
140# Shell used by make (some versions default to the login shell, which is bad)
141SHELL= /bin/sh
142
143# Expanded directories
144BINDIR= $(exec_installdir)/bin
145LIBDIR= $(exec_prefix)/lib
146MANDIR= $(installdir)/man
147INCLUDEDIR= $(installdir)/include
148SCRIPTDIR= $(prefix)/lib
149
150# Detailed destination directories
151BINLIBDEST= $(LIBDIR)/python$(VERSION)
152LIBDEST= $(SCRIPTDIR)/python$(VERSION)
153INCLUDEPY= $(INCLUDEDIR)/python$(VERSION)
154EXECINCLUDEPY= $(exec_installdir)/include/python$(VERSION)
155LIBP= $(exec_installdir)/lib/python$(VERSION)
156DESTSHARED= $(BINLIBDEST)/site-packages
157
158LIBPL= $(LIBP)/config
159
160PYTHONLIBS= $(LIBPL)/libpython$(VERSION).a
161
162MAKESETUP= $(LIBPL)/makesetup
163MAKEFILE= $(LIBPL)/Makefile
164CONFIGC= $(LIBPL)/config.c
165CONFIGCIN= $(LIBPL)/config.c.in
166SETUP= $(LIBPL)/Setup
167
168SYSLIBS= $(LIBM) $(LIBC)
169
170ADDOBJS= $(LIBPL)/python.o config.o
171
172# Portable install script (configure doesn't always guess right)
173INSTALL= $(LIBPL)/install-sh -c
174# Shared libraries must be installed with executable mode on some systems;
175# rather than figuring out exactly which, we always give them executable mode.
176# Also, making them read-only seems to be a good idea...
177INSTALL_SHARED= ${INSTALL} -m 555
178
179# === Fixed rules ===
180
181# Default target. This builds shared libraries only
182default: sharedmods
183
184# Build everything
185all: static sharedmods
186
187# Build shared libraries from our extension modules
188sharedmods: $(SHAREDMODS)
189
190# Build a static Python binary containing our extension modules
191static: $(TARGET)
192$(TARGET): $(ADDOBJS) lib.a $(PYTHONLIBS) Makefile $(BASELIB)
193 $(CC) $(LDFLAGS) $(ADDOBJS) lib.a $(PYTHONLIBS) \
194 $(LINKPATH) $(BASELIB) $(MODLIBS) $(LIBS) $(SYSLIBS) \
195 -o $(TARGET)
196
197install: sharedmods
198 if test ! -d $(DESTSHARED) ; then \
199 mkdir $(DESTSHARED) ; else true ; fi
200 -for i in X $(SHAREDMODS); do \
201 if test $$i != X; \
202 then $(INSTALL_SHARED) $$i $(DESTSHARED)/$$i; \
203 fi; \
204 done
205
206# Build the library containing our extension modules
207lib.a: $(MODOBJS)
208 -rm -f lib.a
209 ar cr lib.a $(MODOBJS)
210 -$(RANLIB) lib.a
211
212# This runs makesetup *twice* to use the BASESETUP definition from Setup
213config.c Makefile: Makefile.pre Setup $(BASESETUP) $(MAKESETUP)
214 $(MAKESETUP) \
215 -m Makefile.pre -c $(CONFIGCIN) Setup -n $(BASESETUP) $(SETUP)
216 $(MAKE) -f Makefile do-it-again
217
218# Internal target to run makesetup for the second time
219do-it-again:
220 $(MAKESETUP) \
221 -m Makefile.pre -c $(CONFIGCIN) Setup -n $(BASESETUP) $(SETUP)
222
223# Make config.o from the config.c created by makesetup
224config.o: config.c
225 $(CC) $(CFLAGS) -c config.c
226
227# Setup is copied from Setup.in *only* if it doesn't yet exist
228Setup:
229 cp $(srcdir)/Setup.in Setup
230
231# Make the intermediate Makefile.pre from Makefile.pre.in
232Makefile.pre: Makefile.pre.in sedscript
233 sed -f sedscript $(srcdir)/Makefile.pre.in >Makefile.pre
234
235# Shortcuts to make the sed arguments on one line
236P=prefix
237E=exec_prefix
238H=Generated automatically from Makefile.pre.in by sedscript.
239L=LINKFORSHARED
240
241# Make the sed script used to create Makefile.pre from Makefile.pre.in
242sedscript: $(MAKEFILE)
243 sed -n \
244 -e '1s/.*/1i\\/p' \
245 -e '2s%.*%# $H%p' \
246 -e '/^VERSION=/s/^VERSION=[ ]*\(.*\)/s%@VERSION[@]%\1%/p' \
247 -e '/^CC=/s/^CC=[ ]*\(.*\)/s%@CC[@]%\1%/p' \
248 -e '/^CCC=/s/^CCC=[ ]*\(.*\)/s%#@SET_CCC[@]%CCC=\1%/p' \
249 -e '/^LINKCC=/s/^LINKCC=[ ]*\(.*\)/s%@LINKCC[@]%\1%/p' \
250 -e '/^OPT=/s/^OPT=[ ]*\(.*\)/s%@OPT[@]%\1%/p' \
251 -e '/^LDFLAGS=/s/^LDFLAGS=[ ]*\(.*\)/s%@LDFLAGS[@]%\1%/p' \
252 -e '/^DEFS=/s/^DEFS=[ ]*\(.*\)/s%@DEFS[@]%\1%/p' \
253 -e '/^LIBS=/s/^LIBS=[ ]*\(.*\)/s%@LIBS[@]%\1%/p' \
254 -e '/^LIBM=/s/^LIBM=[ ]*\(.*\)/s%@LIBM[@]%\1%/p' \
255 -e '/^LIBC=/s/^LIBC=[ ]*\(.*\)/s%@LIBC[@]%\1%/p' \
256 -e '/^RANLIB=/s/^RANLIB=[ ]*\(.*\)/s%@RANLIB[@]%\1%/p' \
257 -e '/^MACHDEP=/s/^MACHDEP=[ ]*\(.*\)/s%@MACHDEP[@]%\1%/p' \
258 -e '/^SO=/s/^SO=[ ]*\(.*\)/s%@SO[@]%\1%/p' \
259 -e '/^LDSHARED=/s/^LDSHARED=[ ]*\(.*\)/s%@LDSHARED[@]%\1%/p' \
260 -e '/^CCSHARED=/s/^CCSHARED=[ ]*\(.*\)/s%@CCSHARED[@]%\1%/p' \
261 -e '/^$L=/s/^$L=[ ]*\(.*\)/s%@$L[@]%\1%/p' \
262 -e '/^$P=/s/^$P=\(.*\)/s%^$P=.*%$P=\1%/p' \
263 -e '/^$E=/s/^$E=\(.*\)/s%^$E=.*%$E=\1%/p' \
264 $(MAKEFILE) >sedscript
265 echo "/^#@SET_CCC@/d" >>sedscript
266 echo "/^installdir=/s%=.*%= $(installdir)%" >>sedscript
267 echo "/^exec_installdir=/s%=.*%=$(exec_installdir)%" >>sedscript
268 echo "/^srcdir=/s%=.*%= $(srcdir)%" >>sedscript
269 echo "/^VPATH=/s%=.*%= $(VPATH)%" >>sedscript
270 echo "/^LINKPATH=/s%=.*%= $(LINKPATH)%" >>sedscript
271 echo "/^BASELIB=/s%=.*%= $(BASELIB)%" >>sedscript
272 echo "/^BASESETUP=/s%=.*%= $(BASESETUP)%" >>sedscript
273
274# Bootstrap target
275boot: clobber
276 VERSION=`$(PYTHON) -c "import sys; print sys.version[:3]"`; \
277 installdir=`$(PYTHON) -c "import sys; print sys.prefix"`; \
278 exec_installdir=`$(PYTHON) -c "import sys; print sys.exec_prefix"`; \
279 $(MAKE) -f $(srcdir)/Makefile.pre.in VPATH=$(VPATH) srcdir=$(srcdir) \
280 VERSION=$$VERSION \
281 installdir=$$installdir \
282 exec_installdir=$$exec_installdir \
283 Makefile
284
285# Handy target to remove intermediate files and backups
286clean:
287 -rm -f *.o *~
288
289# Handy target to remove everything that is easily regenerated
290clobber: clean
291 -rm -f *.a tags TAGS config.c Makefile.pre $(TARGET) sedscript
292 -rm -f *.so *.sl so_locations
293
294
295# Handy target to remove everything you don't want to distribute
296distclean: clobber
297 -rm -f Makefile Setup
This page took 0.080777 seconds and 4 git commands to generate.