home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / gcc / cross-make < prev    next >
Text File  |  1993-09-09  |  804b  |  28 lines

  1. # Build libgcc1.a for a cross-compiler.
  2. # By default this expects the user to provide libgcc1.a,
  3. # and gives up immediately if the user has not done so.
  4. LIBGCC1 = $(CROSS_LIBGCC1)
  5.  
  6. # Specify tools and options for manipulating libraries for the target machine.
  7. AR = $(AR_FOR_TARGET)
  8. AR_FLAGS = $(AR_FOR_TARGET_FLAGS)
  9. OLDAR = $(AR_FOR_TARGET)
  10. OLDAR_FLAGS = $(AR_FOR_TARGET_FLAGS)
  11. RANLIB = $(RANLIB_FOR_TARGET)
  12. RANLIB_TEST = $(RANLIB_TEST_FOR_TARGET)
  13.  
  14. # Dir to search for system headers.  Normally /usr/include.
  15. SYSTEM_HEADER_DIR = $(tooldir)/include
  16.  
  17. # Don't try to compile the things we can't compile.
  18. ALL = all.cross
  19.  
  20. # Use cross-compiler version of float.h.
  21. FLOAT_H = $(CROSS_FLOAT_H)
  22.  
  23. # Don't install assert.h in /usr/local/include.
  24. assertdir = $(tooldir)/include
  25.  
  26. # Don't run fixproto
  27. STMP_FIXPROTO =
  28.