util_comp 839 B

1234567891011121314151617181920212223
  1. # compiler set for producing runnable binaries (possibly using $(UTIL_HOME)).
  2. # This must describe the compiler with which $(UTIL_HOME) has been compiled.
  3. # If $(TARGET_HOME) is identical to $(UTIL_HOME), which usually will be
  4. # the case, this part does not have to be changed. Otherwise (when you are
  5. # cross-compiling ACK), you will have to change this part. Probable
  6. # replacements are given in comments. Maybe the installation script
  7. # has already changed them, but they should be checked to be sure.
  8. UCC=$(CC)
  9. #UCC=cc# # compiler to be used
  10. UCOPTIONS=$(COPTIONS)
  11. #UCOPTIONS=-O# # always passed to $(UCC) -c.
  12. ULDOPTIONS=$(LDOPTIONS)
  13. #ULDOPTIONS=# # always passed to $(UCC) when linking
  14. USUF=$(SUF)
  15. #USUF=o# # suffix of files produced with $(UCC) -c
  16. ULIBSUF=$(LIBSUF)
  17. #ULIBSUF=a# # suffix of object libraries for $(UCC)