diff options
author | Paul Smith <psmith@gnu.org> | 2009-08-02 16:05:42 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2009-08-02 16:05:42 +0000 |
commit | 7deb42aafdf547a3648f60ff04e0114c10a3d18d (patch) | |
tree | 9330340bfd24da63b6bf280a1977bfc0f2d6d0a3 /doc | |
parent | e2f16fdf45ec0506c68f32e9fc6a7b31ae17fdc6 (diff) | |
download | gunmake-7deb42aafdf547a3648f60ff04e0114c10a3d18d.tar.gz |
- Fix Savannah bug #27093
- Fix Savannah bug #27143
- Fix Savannah bug #23960
- Fix Savannah bug #27148
Diffstat (limited to 'doc')
-rw-r--r-- | doc/make.texi | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/make.texi b/doc/make.texi index c036a6d..f73de46 100644 --- a/doc/make.texi +++ b/doc/make.texi @@ -8478,7 +8478,7 @@ for full details on suffix rules. @pindex .o @pindex .c @file{@var{n}.o} is made automatically from @file{@var{n}.c} with -a recipe of the form @samp{$(CC) -c $(CPPFLAGS) $(CFLAGS)}.@refill +a recipe of the form @samp{$(CC) $(CPPFLAGS) $(CFLAGS) -c}.@refill @item Compiling C++ programs @cindex C++, rule to compile @@ -8488,7 +8488,7 @@ a recipe of the form @samp{$(CC) -c $(CPPFLAGS) $(CFLAGS)}.@refill @pindex .C @file{@var{n}.o} is made automatically from @file{@var{n}.cc}, @file{@var{n}.cpp}, or @file{@var{n}.C} with a recipe of the form -@samp{$(CXX) -c $(CPPFLAGS) $(CXXFLAGS)}. We encourage you to use the +@samp{$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c}. We encourage you to use the suffix @samp{.cc} for C++ source files instead of @samp{.C}.@refill @item Compiling Pascal programs @@ -8496,7 +8496,7 @@ suffix @samp{.cc} for C++ source files instead of @samp{.C}.@refill @pindex pc @pindex .p @file{@var{n}.o} is made automatically from @file{@var{n}.p} -with the recipe @samp{$(PC) -c $(PFLAGS)}.@refill +with the recipe @samp{$(PC) $(PFLAGS) -c}.@refill @item Compiling Fortran and Ratfor programs @cindex Fortran, rule to compile @@ -8511,11 +8511,11 @@ Fortran compiler. The precise recipe used is as follows:@refill @table @samp @item .f -@samp{$(FC) -c $(FFLAGS)}. +@samp{$(FC) $(FFLAGS) -c}. @item .F -@samp{$(FC) -c $(FFLAGS) $(CPPFLAGS)}. +@samp{$(FC) $(FFLAGS) $(CPPFLAGS) -c}. @item .r -@samp{$(FC) -c $(FFLAGS) $(RFLAGS)}. +@samp{$(FC) $(FFLAGS) $(RFLAGS) -c}. @end table @item Preprocessing Fortran and Ratfor programs @@ -8526,9 +8526,9 @@ program. The precise recipe used is as follows:@refill @table @samp @item .F -@samp{$(FC) -F $(CPPFLAGS) $(FFLAGS)}. +@samp{$(FC) $(CPPFLAGS) $(FFLAGS) -F}. @item .r -@samp{$(FC) -F $(FFLAGS) $(RFLAGS)}. +@samp{$(FC) $(FFLAGS) $(RFLAGS) -F}. @end table @item Compiling Modula-2 programs |