summaryrefslogtreecommitdiffstats
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorXiang Zhang <angwerzx@126.com>2016-12-15 08:41:12 (GMT)
committerXiang Zhang <angwerzx@126.com>2016-12-15 08:41:12 (GMT)
commit3d40e37883e8c4002c1fb123fbdcade5506b72af (patch)
treec1570841dc20c2136c682c6e7cf6f6a21f2909bb /Makefile.pre.in
parentcb2128cada922741381bcb6ee73a33842a9a43db (diff)
downloadcpython-3d40e37883e8c4002c1fb123fbdcade5506b72af.zip
cpython-3d40e37883e8c4002c1fb123fbdcade5506b72af.tar.gz
cpython-3d40e37883e8c4002c1fb123fbdcade5506b72af.tar.bz2
Issue #28930: Add a Makefile rule for bytes_methods.c.
Add a dependency to stringlib to make sure that bytes_methods.c is recompiled if stringlib is modified.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index cd7d33d..48b5180 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -858,8 +858,8 @@ UNICODE_DEPS = \
$(srcdir)/Objects/stringlib/unicode_format.h \
$(srcdir)/Objects/stringlib/unicodedefs.h
+Objects/bytes_methods.o: $(srcdir)/Objects/bytes_methods.c $(BYTESTR_DEPS)
Objects/bytesobject.o: $(srcdir)/Objects/bytesobject.c $(BYTESTR_DEPS)
-
Objects/bytearrayobject.o: $(srcdir)/Objects/bytearrayobject.c $(BYTESTR_DEPS)
Objects/unicodeobject.o: $(srcdir)/Objects/unicodeobject.c $(UNICODE_DEPS)