util_comp 848 B

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