2006-07-18 16:45:57 +00:00
|
|
|
#!/bin/sh
|
1991-10-15 16:02:38 +00:00
|
|
|
# compiler set for producing runnable binaries (possibly using $(UTIL_HOME)).
|
|
|
|
# This must describe the compiler with which $(UTIL_HOME) has been compiled.
|
|
|
|
# If $(TARGET_HOME) is identical to $(UTIL_HOME), which usually will be
|
|
|
|
# the case, this part does not have to be changed. Otherwise (when you are
|
|
|
|
# cross-compiling ACK), you will have to change this part. Probable
|
|
|
|
# replacements are given in comments. Maybe the installation script
|
|
|
|
# has already changed them, but they should be checked to be sure.
|
|
|
|
|
|
|
|
UCC=$(CC)
|
1991-12-18 14:51:08 +00:00
|
|
|
#UCC=cc# # compiler to be used
|
1991-10-15 16:02:38 +00:00
|
|
|
|
1991-12-02 12:01:04 +00:00
|
|
|
UCOPTIONS=$(COPTIONS)
|
1991-12-18 14:51:08 +00:00
|
|
|
#UCOPTIONS=-O# # always passed to $(UCC) -c.
|
1991-10-15 16:02:38 +00:00
|
|
|
|
|
|
|
ULDOPTIONS=$(LDOPTIONS)
|
1991-12-18 14:51:08 +00:00
|
|
|
#ULDOPTIONS=# # always passed to $(UCC) when linking
|
1991-10-15 16:02:38 +00:00
|
|
|
|
|
|
|
USUF=$(SUF)
|
1991-12-18 14:51:08 +00:00
|
|
|
#USUF=o# # suffix of files produced with $(UCC) -c
|
1991-10-15 16:02:38 +00:00
|
|
|
|
|
|
|
ULIBSUF=$(LIBSUF)
|
1991-12-18 14:51:08 +00:00
|
|
|
#ULIBSUF=a# # suffix of object libraries for $(UCC)
|