blob: 8f38bf8ff778f5e1f6c45ca5f0f65789cb8911df [file] [log] [blame]
Guido van Rossumb6775db1994-08-01 11:34:53 +00001# META-NOTE: this note is different from the note in the other Makefiles!
2# NOTE: Makefile.pre.in is converted into Makefile.pre by the configure
3# script in the toplevel directory or by ../config.status.
4# Makefile.pre is converted into Makefile by running the makesetup
5# script in the source directory. Once Makefile exists, it can be
6# brought up to date by running "make Makefile". (The makesetup also
7# creates config.c from config.c.in in the source directory.)
Guido van Rossumfba715a1994-01-02 00:26:09 +00008
Guido van Rossumb6775db1994-08-01 11:34:53 +00009# === Variables set by makesetup ===
Guido van Rossumfba715a1994-01-02 00:26:09 +000010
Guido van Rossum3bbc62e1995-01-02 19:30:30 +000011MODOBJS= _MODOBJS_
12MODLIBS= _MODLIBS_
Guido van Rossumfba715a1994-01-02 00:26:09 +000013
Guido van Rossumb6775db1994-08-01 11:34:53 +000014# === Variables set by configure ===
Guido van Rossumfba715a1994-01-02 00:26:09 +000015
Guido van Rossumf6ca6aa1997-07-19 19:39:57 +000016VERSION= @VERSION@
Guido van Rossumfba715a1994-01-02 00:26:09 +000017srcdir= @srcdir@
18VPATH= @srcdir@
19
Guido van Rossum4e083791999-12-16 17:52:08 +000020@SET_CXX@
Guido van Rossumfba715a1994-01-02 00:26:09 +000021CC= @CC@
22RANLIB= @RANLIB@
Guido van Rossumb6775db1994-08-01 11:34:53 +000023AR= @AR@
24
Guido van Rossumf4449de1995-04-10 11:37:18 +000025OPT= @OPT@
Guido van Rossum07b983d1996-08-19 21:59:32 +000026LDFLAGS= @LDFLAGS@
Guido van Rossumbd5f1931997-01-28 02:21:24 +000027LDLAST= @LDLAST@
Guido van Rossum91922671997-10-09 20:24:13 +000028SGI_ABI= @SGI_ABI@
Guido van Rossumf4449de1995-04-10 11:37:18 +000029
Guido van Rossumfba715a1994-01-02 00:26:09 +000030DEFS= @DEFS@
31LIBS= @LIBS@
Guido van Rossumb6775db1994-08-01 11:34:53 +000032LIBM= @LIBM@
33LIBC= @LIBC@
34
Guido van Rossum45a91041995-08-08 14:18:12 +000035# Machine-dependent subdirectories
36MACHDEP= @MACHDEP@
37
Guido van Rossum3bbc62e1995-01-02 19:30:30 +000038# Install prefix for architecture-independent files
39prefix= @prefix@
40
41# Install prefix for architecture-dependent files
42exec_prefix= @exec_prefix@
Guido van Rossumfba715a1994-01-02 00:26:09 +000043
Guido van Rossum276de581996-07-31 17:37:07 +000044# Expanded directories
45BINDIR= $(exec_prefix)/bin
46LIBDIR= $(exec_prefix)/lib
47MANDIR= $(prefix)/man
48INCLUDEDIR= $(prefix)/include
49SCRIPTDIR= $(prefix)/lib
50
51# Detailed destination directories
52BINLIBDEST= $(LIBDIR)/python$(VERSION)
53LIBDEST= $(SCRIPTDIR)/python$(VERSION)
54INCLUDEPY= $(INCLUDEDIR)/python$(VERSION)
55LIBP= $(LIBDIR)/python$(VERSION)
56
Guido van Rossum7cc5abd1994-09-12 10:42:20 +000057# Symbols used for using shared libraries
58SO= @SO@
59LDSHARED= @LDSHARED@
60CCSHARED= @CCSHARED@
61LINKFORSHARED= @LINKFORSHARED@
Guido van Rossum266033e1997-10-20 23:20:32 +000062DESTSHARED= $(BINLIBDEST)/lib-dynload
Guido van Rossum7cc5abd1994-09-12 10:42:20 +000063
Guido van Rossumddcb36b1996-05-24 21:14:44 +000064# Portable install script (configure doesn't always guess right)
65INSTALL= @srcdir@/../install-sh -c
Guido van Rossum704fef21996-07-30 16:53:14 +000066INSTALL_PROGRAM=${INSTALL} -m 755
Guido van Rossumddcb36b1996-05-24 21:14:44 +000067INSTALL_DATA= ${INSTALL} -m 644
Guido van Rossumcde317a1996-08-20 19:46:35 +000068# Shared libraries must be installed with executable mode on some systems;
69# rather than figuring out exactly which, we always give them executable mode.
Guido van Rossum6fe01d41996-09-11 23:13:07 +000070# Also, making them read-only seems to be a good idea...
71INSTALL_SHARED= ${INSTALL} -m 555
Guido van Rossumddcb36b1996-05-24 21:14:44 +000072
Guido van Rossum275fbe21995-09-30 17:01:49 +000073# === Variables that are customizable by hand or by inclusion in Setup ===
Guido van Rossumfba715a1994-01-02 00:26:09 +000074
Guido van Rossum25f93031997-08-18 16:00:04 +000075LINKCC= @LINKCC@
Guido van Rossumb6775db1994-08-01 11:34:53 +000076INCLDIR= $(srcdir)/../Include
Guido van Rossum450b9b31996-07-21 02:35:58 +000077CONFIGINCLDIR= ..
78CFLAGS= $(OPT) -I$(INCLDIR) -I$(CONFIGINCLDIR) $(DEFS)
Guido van Rossumfba715a1994-01-02 00:26:09 +000079
Guido van Rossumfba715a1994-01-02 00:26:09 +000080MKDEP= mkdep
81SHELL= /bin/sh
82
Guido van Rossumb6775db1994-08-01 11:34:53 +000083MAKESETUP= $(srcdir)/makesetup
Guido van Rossumfba715a1994-01-02 00:26:09 +000084
Guido van Rossumbcc20741998-08-04 22:53:56 +000085# (The makesetup script inserts all variable definitions
Guido van Rossum275fbe21995-09-30 17:01:49 +000086# found in the Setup file just below the following line.
87# This means that the Setup file can override any of the definitions
88# given before this point, but not any given below.
89# The script insert the definitions in reverse order,
90# for the benefits of independent extensions.)
91# === Definitions added by makesetup ===
92
Guido van Rossumfba715a1994-01-02 00:26:09 +000093# === Fixed definitions ===
94
Guido van Rossumf6ca6aa1997-07-19 19:39:57 +000095FIXOBJS= config.o getpath.o main.o getbuildinfo.o
96OBJS= $(MODOBJS) $(FIXOBJS)
Guido van Rossumfba715a1994-01-02 00:26:09 +000097
Guido van Rossum4e083791999-12-16 17:52:08 +000098#MAINOBJ= python.o
99MAINOBJ= @MAINOBJ@
Guido van Rossumfba715a1994-01-02 00:26:09 +0000100
Guido van Rossumb6775db1994-08-01 11:34:53 +0000101SYSLIBS= $(LIBM) $(LIBC)
Guido van Rossumfba715a1994-01-02 00:26:09 +0000102
Guido van Rossumf6ca6aa1997-07-19 19:39:57 +0000103LIBRARY= ../libpython$(VERSION).a
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000104LDLIBRARY= ../@LDLIBRARY@
Guido van Rossumfba715a1994-01-02 00:26:09 +0000105
106# === Rules ===
107
Guido van Rossum79fa8b01997-08-18 14:23:13 +0000108all: $(OBJS)
Guido van Rossumfba715a1994-01-02 00:26:09 +0000109
Guido van Rossumf6ca6aa1997-07-19 19:39:57 +0000110# This target is used by the master Makefile to add the objects to the library.
Guido van Rossum4f46fc61997-08-20 22:45:52 +0000111# To deal with the conflict between signalmodule.o and
112# sigcheck.o+intrcheck.o, we remove the latter two if we have the former.
Guido van Rossum5ec8e4b1997-07-25 22:35:24 +0000113add2lib: $(OBJS)
Guido van Rossum2a570041998-10-07 22:51:56 +0000114 -if test -f hassignal; \
115 then echo removing sigcheck.o intrcheck.o; \
116 $(AR) d $(LIBRARY) sigcheck.o intrcheck.o 2>/dev/null; \
117 else echo leaving sigcheck.o intrcheck.o in; fi
Guido van Rossumf6ca6aa1997-07-19 19:39:57 +0000118 $(AR) cr $(LIBRARY) $(OBJS)
Guido van Rossumf6ca6aa1997-07-19 19:39:57 +0000119 touch add2lib
120
Guido van Rossumd14c0681997-08-22 20:53:47 +0000121# Use ``EXE=.exe'' for Unix emulations on DOS/Windows
122EXE=
123
Guido van Rossumf6ca6aa1997-07-19 19:39:57 +0000124# This target is used by the master Makefile to link the final binary.
125link: $(MAINOBJ)
Guido van Rossum3c4bb801997-12-18 23:55:32 +0000126 $(LINKCC) $(LDFLAGS) $(LINKFORSHARED) $(MAINOBJ) \
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000127 $(LDLIBRARY) $(MODLIBS) $(LIBS) $(SYSLIBS) -o python $(LDLAST)
Guido van Rossumd14c0681997-08-22 20:53:47 +0000128 mv python$(EXE) ../python$(EXE)
Guido van Rossumfba715a1994-01-02 00:26:09 +0000129
Guido van Rossumfba715a1994-01-02 00:26:09 +0000130clean:
Guido van Rossumd4b8b091999-04-12 16:42:13 +0000131 -rm -f *.o python$(EXE) core *~ [@,#]* *.old *.orig *.rej
132 -rm -f add2lib hassignal
Guido van Rossumfba715a1994-01-02 00:26:09 +0000133
134clobber: clean
Guido van Rossum02759c01998-05-14 02:33:57 +0000135 -rm -f *.a tags TAGS config.c Makefile.pre
Guido van Rossum65544191996-08-08 19:07:46 +0000136 -rm -f *.so *.sl so_locations
Guido van Rossumfba715a1994-01-02 00:26:09 +0000137
Guido van Rossum37ba0bc1995-08-04 04:20:45 +0000138getpath.o: getpath.c Makefile
139 $(CC) -c $(CFLAGS) -DPYTHONPATH='"$(PYTHONPATH)"' \
Guido van Rossumc34c9a51996-06-12 04:20:27 +0000140 -DPREFIX='"$(prefix)"' \
141 -DEXEC_PREFIX='"$(exec_prefix)"' \
Guido van Rossumec61b771997-04-11 17:04:49 +0000142 -DVERSION='"$(VERSION)"' \
143 -DVPATH='"$(VPATH)"' \
Guido van Rossum37ba0bc1995-08-04 04:20:45 +0000144 $(srcdir)/getpath.c
145
Guido van Rossumf6ca6aa1997-07-19 19:39:57 +0000146# When the configuration changes, we remove the library, so that it
147# gets remade from scratch; this ensures to remove modules that are no
148# longer pertinent (but that were in a previous configuration).
Guido van Rossuma0cbb3d1997-12-04 00:48:27 +0000149config.c Makefile: Makefile.pre config.c.in $(MAKESETUP)
150config.c Makefile: Setup.thread Setup Setup.local
151config.c Makefile:
Guido van Rossumf6ca6aa1997-07-19 19:39:57 +0000152 -rm -f $(LIBRARY)
Guido van Rossuma0cbb3d1997-12-04 00:48:27 +0000153 $(SHELL) $(MAKESETUP) Setup.thread Setup.local Setup
Guido van Rossumfba715a1994-01-02 00:26:09 +0000154
Guido van Rossum2a570041998-10-07 22:51:56 +0000155hassignal:
156 -rm -f hassignal
157 -for i in $(OBJS); do \
158 if test "$$i" = "signalmodule.o"; then \
159 echo yes >hassignal; break; \
160 fi; \
161 done
162
Guido van Rossumb6775db1994-08-01 11:34:53 +0000163Setup:
164 cp $(srcdir)/Setup.in Setup
165
Guido van Rossum6fe01d41996-09-11 23:13:07 +0000166Setup.local:
167 echo "# Edit this file for local setup changes" >Setup.local
168
Guido van Rossumb6775db1994-08-01 11:34:53 +0000169Makefile.pre: Makefile.pre.in ../config.status
170 (cd ..; CONFIG_FILES=Modules/Makefile.pre CONFIG_HEADERS= \
171 $(SHELL) config.status)
Guido van Rossumfba715a1994-01-02 00:26:09 +0000172
173depend:
Guido van Rossumb6775db1994-08-01 11:34:53 +0000174 $(MKDEP) $(CFLAGS) `echo $(OBJS) | tr ' ' '\012' | \
175 sed 's|\(.*\)\.o|$(srcdir)/\1.c|'`
Guido van Rossumfba715a1994-01-02 00:26:09 +0000176
Guido van Rossum8ad22c81999-03-23 19:00:55 +0000177.PRECIOUS: ../python$(EXE)
Guido van Rossumfba715a1994-01-02 00:26:09 +0000178
Guido van Rossumb6775db1994-08-01 11:34:53 +0000179glmodule.c: $(srcdir)/cgen.py $(srcdir)/cstubs
180 python $(srcdir)/cgen.py <$(srcdir)/cstubs >glmodule.c
Guido van Rossumfba715a1994-01-02 00:26:09 +0000181
Guido van Rossumb6775db1994-08-01 11:34:53 +0000182almodule.o: almodule.c
183arraymodule.o: arraymodule.c
Guido van Rossumc65a5251994-08-05 13:44:50 +0000184audioop.o: audioop.c
Guido van Rossumb6775db1994-08-01 11:34:53 +0000185cdmodule.o: cdmodule.c
Guido van Rossum4f1099f1997-04-29 15:41:53 +0000186cgensupport.o: cgensupport.c
Guido van Rossumb6775db1994-08-01 11:34:53 +0000187clmodule.o: clmodule.c
Guido van Rossume141fd82000-03-10 23:12:33 +0000188_codecsmodule.o: _codecsmodule.c
Guido van Rossumb6775db1994-08-01 11:34:53 +0000189dbmmodule.o: dbmmodule.c
Guido van Rossum02530b01996-07-31 22:43:38 +0000190errnomodule.o: errnomodule.c
Guido van Rossumb6775db1994-08-01 11:34:53 +0000191fcntlmodule.o: fcntlmodule.c
192flmodule.o: flmodule.c
193fmmodule.o: fmmodule.c
194glmodule.o: glmodule.c
Guido van Rossumc65a5251994-08-05 13:44:50 +0000195imageop.o: imageop.c
196imgfile.o: imgfile.c
Guido van Rossum37ba0bc1995-08-04 04:20:45 +0000197main.o: main.c
Guido van Rossumb6775db1994-08-01 11:34:53 +0000198mathmodule.o: mathmodule.c
199md5c.o: md5c.c
200md5module.o: md5module.c
201mpzmodule.o: mpzmodule.c
202nismodule.o: nismodule.c
Guido van Rossum02530b01996-07-31 22:43:38 +0000203operator.o: operator.c
Guido van Rossumb6775db1994-08-01 11:34:53 +0000204parsermodule.o: parsermodule.c
205posixmodule.o: posixmodule.c
206pwdmodule.o: pwdmodule.c
207regexmodule.o: regexmodule.c
208regexpr.o: regexpr.c
Guido van Rossum2e631391996-12-18 18:37:27 +0000209resource.o: resource.c
Guido van Rossumb6775db1994-08-01 11:34:53 +0000210rgbimgmodule.o: rgbimgmodule.c
211rotormodule.o: rotormodule.c
212selectmodule.o: selectmodule.c
213sgimodule.o: sgimodule.c
214socketmodule.o: socketmodule.c
215stdwinmodule.o: stdwinmodule.c
216stropmodule.o: stropmodule.c
217structmodule.o: structmodule.c
Guido van Rossumc65a5251994-08-05 13:44:50 +0000218sunaudiodev.o: sunaudiodev.c
Guido van Rossumb6775db1994-08-01 11:34:53 +0000219svmodule.o: svmodule.c
220threadmodule.o: threadmodule.c
221timemodule.o: timemodule.c
222timingmodule.o: timingmodule.c
Guido van Rossume141fd82000-03-10 23:12:33 +0000223unicodedata.o: unicodedata.c unicodedatabase.o
224unicodedatabase.o: unicodedatabase.c unicodedatabase.h
Guido van Rossumb6775db1994-08-01 11:34:53 +0000225xxmodule.o: xxmodule.c
226yuvconvert.o: yuvconvert.c
227
Guido van Rossum7cc5abd1994-09-12 10:42:20 +0000228# Rules to build and install all shared modules
229sharedmods: $(SHAREDMODS)
Guido van Rossum811fbbc1995-01-22 00:47:59 +0000230sharedinstall: $(DESTSHARED) $(SHAREDMODS)
Guido van Rossumddcb36b1996-05-24 21:14:44 +0000231 -for i in X $(SHAREDMODS); do \
232 if test $$i != X; \
Guido van Rossumcde317a1996-08-20 19:46:35 +0000233 then $(INSTALL_SHARED) $$i $(DESTSHARED)/$$i; \
Guido van Rossumddcb36b1996-05-24 21:14:44 +0000234 fi; \
235 done
Guido van Rossumfba715a1994-01-02 00:26:09 +0000236
Guido van Rossum704fef21996-07-30 16:53:14 +0000237DESTDIRS= $(exec_prefix) $(LIBDIR) $(BINLIBDEST) $(DESTSHARED)
Guido van Rossum2bd37e61996-06-17 17:33:11 +0000238
Guido van Rossum4daf6ad1996-07-24 02:33:33 +0000239$(DESTSHARED):
240 @for i in $(DESTDIRS); \
241 do \
242 if test ! -d $$i; then \
243 echo "Creating directory $$i"; \
244 mkdir $$i; \
245 chmod 755 $$i; \
246 else true; \
247 fi; \
248 done
Guido van Rossum811fbbc1995-01-22 00:47:59 +0000249
Guido van Rossum4e083791999-12-16 17:52:08 +0000250ccpython.o: ccpython.cc
251 $(CXX) $(CFLAGS) -c $*.cc
252
Guido van Rossum7cc5abd1994-09-12 10:42:20 +0000253# Stuff is appended here by makesetup and make depend