diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-10-07 21:45:39 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-10-07 21:45:39 (GMT) |
commit | 4e31443c4d2c1fb211a6ea90fc6a8fbd9ff81c97 (patch) | |
tree | 5fb0a5fc704c00fcdd2b9885ac0896ab2f971309 /Makefile.pre.in | |
parent | 7ae7c87b058137537bdc2b7f1d8e585aa0245c1c (diff) | |
download | cpython-4e31443c4d2c1fb211a6ea90fc6a8fbd9ff81c97.zip cpython-4e31443c4d2c1fb211a6ea90fc6a8fbd9ff81c97.tar.gz cpython-4e31443c4d2c1fb211a6ea90fc6a8fbd9ff81c97.tar.bz2 |
Create fileutils.c/.h
* _Py_fopen() and _Py_stat() come from Python/import.c
* (_Py)_wrealpath() comes from Python/sysmodule.c
* _Py_char2wchar(), _Py_wchar2char() and _Py_wfopen() come from Modules/main.c
* (_Py)_wstat(), (_Py)_wgetcwd(), _Py_wreadlink() come from Modules/getpath.c
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 294a03c..8e8727d 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -325,6 +325,7 @@ PYTHON_OBJS= \ Python/pystrtod.o \ Python/dtoa.o \ Python/formatter_unicode.o \ + Python/fileutils.o \ Python/$(DYNLOADFILE) \ $(LIBOBJS) \ $(MACHDEP_OBJS) \ @@ -454,7 +455,7 @@ libpython$(VERSION).so: $(LIBRARY_OBJS) libpython$(VERSION).dylib: $(LIBRARY_OBJS) $(CC) -dynamiclib -Wl,-single_module $(PY_LDFLAGS) -undefined dynamic_lookup -Wl,-install_name,$(prefix)/lib/libpython$(VERSION).dylib -Wl,-compatibility_version,$(VERSION) -Wl,-current_version,$(VERSION) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST); \ - + libpython$(VERSION).sl: $(LIBRARY_OBJS) $(LDSHARED) $(PY_LDFLAGS) -o $@ $(LIBRARY_OBJS) $(MODLIBS) $(SHLIBS) $(LIBC) $(LIBM) $(LDLAST) @@ -620,7 +621,7 @@ BYTESTR_DEPS = \ Objects/bytesobject.o: $(srcdir)/Objects/bytesobject.c $(BYTESTR_DEPS) -Objects/bytearrayobject.o: $(srcdir)/Objects/bytearrayobject.c $(BYTESTR_DEPS) +Objects/bytearrayobject.o: $(srcdir)/Objects/bytearrayobject.c $(BYTESTR_DEPS) Objects/unicodeobject.o: $(srcdir)/Objects/unicodeobject.c \ $(BYTESTR_DEPS) @@ -665,6 +666,7 @@ PYTHON_HEADERS= \ Include/errcode.h \ Include/eval.h \ Include/fileobject.h \ + Include/fileutils.h \ Include/floatobject.h \ Include/frameobject.h \ Include/funcobject.h \ @@ -1283,7 +1285,7 @@ Python/thread.o: @THREADHEADERS@ .PHONY: maninstall libinstall inclinstall libainstall sharedinstall .PHONY: frameworkinstall frameworkinstallframework frameworkinstallstructure .PHONY: frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools -.PHONY: frameworkaltinstallunixtools recheck autoconf clean clobber distclean +.PHONY: frameworkaltinstallunixtools recheck autoconf clean clobber distclean .PHONY: smelly funny patchcheck .PHONY: gdbhooks |