diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2002-10-19 20:26:26 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2002-10-19 20:26:26 +0000 |
commit | bea966c0d9a65fd0c7b909fc5f8b2b2ff7635537 (patch) | |
tree | e732f79176ff357711108adedf55eadd96286221 /winsup/mingw/Makefile.in | |
parent | 1fc4df5a691c6faef6b70c1dc282b679e8977fd2 (diff) | |
download | cygnal-bea966c0d9a65fd0c7b909fc5f8b2b2ff7635537.tar.gz cygnal-bea966c0d9a65fd0c7b909fc5f8b2b2ff7635537.tar.bz2 cygnal-bea966c0d9a65fd0c7b909fc5f8b2b2ff7635537.zip |
* Makefile.in (CRT0S): Add txtmode.o binmode.o.
(MINGW_OBJS): Add txtmode.o.
(SRCDIST_FILES): Add txtmode.c binmode.c.
crt1.c: Don't include fcntrl.h, stdlib.h.
(_fmode): Declare, without dllimport attribute.
(__p__fmode): Declare access function for dll's _fmode.
(_mingw32_init_fmode): Sync dll _fmode with staticly linked
_fmode for app.
* txtmode.c: New file.
* binmode.c: New file.
* samples/fmode/test2.c: New file.
* samples/fmode/jamfile: Add test2.exe target.
Diffstat (limited to 'winsup/mingw/Makefile.in')
-rw-r--r-- | winsup/mingw/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/mingw/Makefile.in b/winsup/mingw/Makefile.in index 332fb1784..f2e5d253d 100644 --- a/winsup/mingw/Makefile.in +++ b/winsup/mingw/Makefile.in @@ -148,9 +148,9 @@ FLAGS_TO_PASS:=\ TARFILEEXT="$(TARFILEEXT)" CRT0S = crt1.o dllcrt1.o crt2.o dllcrt2.o CRT_noglob.o crtmt.o crtst.o \ - CRT_fp8.o CRT_fp10.o + CRT_fp8.o CRT_fp10.o txtmode.o binmode.o MINGW_OBJS = CRTglob.o CRTfmode.o CRTinit.o dllmain.o gccmain.o \ - main.o crtst.o mthr_stub.o CRT_fp10.o + main.o crtst.o mthr_stub.o CRT_fp10.o txtmode.o MOLD_OBJS = ctype_old.o string_old.o LIBS = libcrtdll.a libmsvcrt.a libmsvcrt20.a libmsvcrt40.a libmingw32.a \ @@ -164,7 +164,7 @@ crt1.c crtdll.def crtmt.c crtst.c ctype_old.c dllcrt1.c dllmain.c \ gccmain.c init.c install-sh jamfile main.c mkinstalldirs moldname-crtdll.def \ moldname-msvcrt.def moldname.def moldname.def.in msvcrt.def msvcrt20.def \ msvcrt40.def mthr.c mthr_init.c mthr_stub.c readme.txt string_old.c \ -CRT_fp8.c CRT_fp10.c test_headers.c +CRT_fp8.c CRT_fp10.c test_headers.c txtmode.c binmode.c all_dlls_host = @all_dlls_host@ install_dlls_host = @install_dlls_host@ |