home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 7 / FreshFishVol7.bin / bbs / gnu / gcc-2.3.3-src.lha / GNU / src / amiga / gcc-2.3.3 / config / x-amigados < prev    next >
Text File  |  1994-02-06  |  1KB  |  37 lines

  1. # Note: It doesn't do any good to try to define prefix or local_prefix
  2. # in the host overrides because configure will just change them back.
  3. # You either have to give an appropriate option to configure or live with
  4. # an Amiga specific patch to configure.  See the note in configure.  -fnf
  5.  
  6. # Building under amigados almost certainly requires an already working gcc.
  7. # Use gccv, which is a gcc compiled with AMIGADOS_FORK_GCC so "-pipe" will
  8. # work and get exercised.  To bootstrap with the regular gcc just do
  9. # "make CC=gcc"
  10.  
  11. CC = gccv -pipe
  12.  
  13. # Allow the user to override the default host optimization with gcc, or if the
  14. # host compiler is not gcc and doesn't understand -O<N>.
  15.  
  16. X_OPTIMIZE = -O2
  17.  
  18. # The standard additional host flags for the compiler.
  19.  
  20. X_CFLAGS = $(X_OPTIMIZE)
  21.  
  22. # Man pages get a wierd suffix...
  23.  
  24. manext = .0
  25.  
  26. # We really shouldn't specify CFLAGS from here, but there's no other way
  27. # to get rid of the `-g' indoctrinated by Makefile.in.  Note this becomes
  28. # part of both the host compilation CFLAGS and the target compilation
  29. # CFLAGS.
  30.  
  31. CFLAGS =
  32.  
  33. # Ranlib does exist, but may not be in a path where the default RANLIB_TEST
  34. # expects it, so just force it to true.
  35.  
  36. RANLIB_TEST = true
  37.