source: rtems/c/src/make/host.cfg.in @ c92fb641

4.104.114.84.95
Last change on this file since c92fb641 was df49c60, checked in by Joel Sherrill <joel.sherrill@…>, on 06/12/00 at 15:00:15

Merged from 4.5.0-beta3a

  • Property mode set to 100644
File size: 1.6 KB
Line 
1#
2#  $Id$
3#
4# OS-specific configuration
5#
6# Derived from rtems/c/make/os/*.cfg in previous RTEMS version.
7#
8
9RTEMS_HOST = @RTEMS_HOST@
10
11#
12# Stuff to clean and clobber for the OS
13#
14
15CLEAN_OS =
16CLOBBER_OS = *~ *.bak TAGS tags
17
18SHELL=@SHELL@
19ECHO=echo
20
21CAT=cat
22## RM=@RM@ -f
23CP=@CP@
24MV=@MV@
25LN=@LN@
26MKDIR=mkdir
27CHMOD=chmod
28SED=sed
29
30# Global tools
31ifndef PACKHEX
32PACKHEX=$(PROJECT_BIN)/packhex
33endif
34
35ifndef INSTALL_CHANGE
36INSTALL_CHANGE=$(PROJECT_BIN)/install-if-change
37endif
38INSTALL_VARIANT=$(INSTALL_CHANGE) -V "$(LIB_VARIANT)"
39
40# FIXME: HACK for a bug in cygwin-hosted egcs which returns a mixture
41#        of '\\' and '/' as path separators.
42#        Should be removed as soon as this bug is fixed in egcs.
43GCCSED = @GCCSED@
44
45# ksh (or bash) is used by some shell scripts; ref build-tools/scripts/Makefile
46#
47#  Must have shell functions.  Some ksh's core dump mysteriously and
48#  unreliably on RTEMS shell scripts.  bash appears to be the most
49#  reliable but late model ksh's are usually OK.
50KSH=@KSH@
51
52#
53#  Rule to install a shell script with the proper shell to run it.
54#
55
56# when debugging, one may want to save the previous incarnation of the
57# installed script.  Replace the first line of this rule to do this.
58#
59#       -$(RM) $@.old
60#       -$(MV) $@ $@.old >/dev/null 2>&1
61
62# OBSOLETE: Don't use this anymore, this may be removed in future
63define make-script
64        -$(RM) $@
65        $(SED) -e '1,1s?^#!KSHELL?#!$(KSH)?' \
66               -e '1,1s?^#!SHELL?#!$(SHELL)?' < $< > $@
67        $(CHMOD) 0555 $@
68endef
69
70INSTBINFLAGS  = -m 0755
71INSTDATAFLAGS = -m 0644
72INSTLIBFLAGS  = -m 0644
73INSTDIRFLAGS  = -m 0755 -d
74INSTINCFLAGS  = -m 0644
Note: See TracBrowser for help on using the repository browser.