From: Guido van Rossum Date: Tue, 17 Jan 1995 16:51:35 +0000 (+0000) Subject: added getopt.c to object, permanently X-Git-Tag: v1.2b2~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=97d68c03bcfe8675dc855a021246c563d3f885c1;p=thirdparty%2FPython%2Fcpython.git added getopt.c to object, permanently --- diff --git a/Python/Makefile.in b/Python/Makefile.in index 9bbbb346d439..167ab084f9e2 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