diff options
author | Guido van Rossum <guido@python.org> | 1995-01-17 16:51:35 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-17 16:51:35 (GMT) |
commit | 97d68c03bcfe8675dc855a021246c563d3f885c1 (patch) | |
tree | 5c016b6ebf34f82d2047163f630f4fabb5ef8c72 /Python | |
parent | 0ddb02844465fb0465bc00226d59e6c6e3919759 (diff) | |
download | cpython-97d68c03bcfe8675dc855a021246c563d3f885c1.zip cpython-97d68c03bcfe8675dc855a021246c563d3f885c1.tar.gz cpython-97d68c03bcfe8675dc855a021246c563d3f885c1.tar.bz2 |
added getopt.c to object, permanently
Diffstat (limited to 'Python')
-rw-r--r-- | Python/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/Makefile.in b/Python/Makefile.in index 9bbbb34..167ab08 100644 --- a/Python/Makefile.in +++ b/Python/Makefile.in @@ -34,7 +34,7 @@ OBJS= \ ceval.o cgensupport.o compile.o \ errors.o \ frozenmain.o \ - getargs.o getmtime.o graminit.o \ + getargs.o getmtime.o getopt.o graminit.o \ import.o importdl.o \ marshal.o modsupport.o mystrtoul.o \ pythonmain.o pythonrun.o \ @@ -86,6 +86,7 @@ frozenmain.o: frozenmain.c getargs.o: getargs.c getcwd.o: getcwd.c getmtime.o: getmtime.c +getopt.o: getopt.c graminit.o: graminit.c import.o: import.c importdl.o: importdl.c |