diff options
author | Guido van Rossum <guido@python.org> | 1995-08-04 04:13:00 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-08-04 04:13:00 (GMT) |
commit | a1633cd993105aa86fccce05056703248a0c2db7 (patch) | |
tree | 933e8813770479e2c4cd8ce70c0156d1f63678ce /Python | |
parent | 47ad5e7d812c60dd755e6762f17ec8e0760be4af (diff) | |
download | cpython-a1633cd993105aa86fccce05056703248a0c2db7.zip cpython-a1633cd993105aa86fccce05056703248a0c2db7.tar.gz cpython-a1633cd993105aa86fccce05056703248a0c2db7.tar.bz2 |
split cofnfig.c in 1000 little files :-)
Diffstat (limited to 'Python')
-rw-r--r-- | Python/Makefile.in | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/Python/Makefile.in b/Python/Makefile.in index 838c296..5be2532 100644 --- a/Python/Makefile.in +++ b/Python/Makefile.in @@ -16,6 +16,9 @@ LIBOBJS= @LIBOBJS@ LIBS= @LIBS@ DLINCLDIR= @DLINCLDIR@ +# Machine-dependent subdirectories +MACHDEP= @MACHDEP@ + # === Other things that are customizable but not by configure === @@ -33,10 +36,12 @@ OBJS= \ bltinmodule.o \ ceval.o cgensupport.o compile.o \ errors.o \ - getargs.o getmtime.o graminit.o \ + frozen.o \ + getargs.o getcompiler.o getcopyright.o getmtime.o \ + getplatform.o getversion.o graminit.o \ import.o importdl.o \ marshal.o modsupport.o mystrtoul.o \ - pythonmain.o pythonrun.o \ + pythonrun.o \ sigcheck.o structmember.o sysmodule.o \ traceback.o \ $(LIBOBJS) @@ -65,8 +70,12 @@ Makefile: $(srcdir)/Makefile.in ../config.status (cd ..; CONFIG_FILES=Python/Makefile CONFIG_HEADERS= \ $(SHELL) config.status) +getplatform.o: getplatform.c Makefile + $(CC) -c $(CFLAGS) -DPLATFORM='"$(MACHDEP)"' \ + $(srcdir)/getplatform.c + importdl.o: importdl.c - $(CC) $(CFLAGS) -I$(DLINCLDIR) -c $(srcdir)/importdl.c + $(CC) -c $(CFLAGS) -I$(DLINCLDIR) $(srcdir)/importdl.c depend: $(MKDEP) $(CFLAGS) `echo $(OBJS) | tr ' ' '\012' | \ @@ -81,11 +90,16 @@ compile.o: compile.c dup2.o: dup2.c errors.o: errors.c fmod.o: fmod.c +frozen.o: frozen.c frozenmain.o: frozenmain.c getargs.o: getargs.c +getcompiler.o: getcompiler.c +getcopyright.o: getcopyright.c getcwd.o: getcwd.c getmtime.o: getmtime.c getopt.o: getopt.c +getplatform.o: getplatform.c +getversion.o: getversion.c graminit.o: graminit.c import.o: import.c importdl.o: importdl.c @@ -93,7 +107,6 @@ marshal.o: marshal.c memmove.o: memmove.c modsupport.o: modsupport.c mystrtoul.o: mystrtoul.c -pythonmain.o: pythonmain.c pythonrun.o: pythonrun.c sigcheck.o: sigcheck.c strerror.o: strerror.c |