diff options
author | Guido van Rossum <guido@python.org> | 1995-07-18 14:30:34 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-07-18 14:30:34 (GMT) |
commit | 2271bf718734625dd19202d752a67b5f54cf2000 (patch) | |
tree | 36767eb9b6242b48cb3661e434d28abc1890ac16 /Objects/Makefile.in | |
parent | 884afd654a79bcb836afcdb5c953a627fd45c4c7 (diff) | |
download | cpython-2271bf718734625dd19202d752a67b5f54cf2000.zip cpython-2271bf718734625dd19202d752a67b5f54cf2000.tar.gz cpython-2271bf718734625dd19202d752a67b5f54cf2000.tar.bz2 |
changes for keyword arguments and fast function call; added abstract.c
Diffstat (limited to 'Objects/Makefile.in')
-rw-r--r-- | Objects/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Objects/Makefile.in b/Objects/Makefile.in index 60a71ca..cdf4852 100644 --- a/Objects/Makefile.in +++ b/Objects/Makefile.in @@ -26,14 +26,14 @@ SHELL= /bin/sh # === Fixed definitions === -OBJS= accessobject.o \ +OBJS= abstract.o accessobject.o \ classobject.o fileobject.o floatobject.o \ frameobject.o funcobject.o intobject.o listobject.o \ longobject.o mappingobject.o methodobject.o \ moduleobject.o object.o rangeobject.o stringobject.o \ tupleobject.o typeobject.o -SRCS= accessobject.c \ +SRCS= abstract.c accessobject.c \ classobject.c fileobject.c floatobject.c \ frameobject.c funcobject.c intobject.c listobject.c \ longobject.c mappingobject.c methodobject.c \ @@ -68,6 +68,7 @@ depend: .PRECIOUS: Makefile +abstract.o: abstract.c accessobject.o: accessobject.c classobject.o: classobject.c fileobject.o: fileobject.c |