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

4.115
Last change on this file since e1ebfebf was 795affd6, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/07/11 at 03:49:54

2011-03-07 Ralf Corsépius <ralf.corsepius@…>

PR 1753/misc:

  • host.cfg.in: Remove RTEMS_HOST.
  • Property mode set to 100644
File size: 944 bytes
Line 
1#
2#  $Id$
3#
4# OS-specific configuration
5#
6# Derived from rtems/c/make/os/*.cfg in previous RTEMS version.
7#
8
9#
10# Stuff to clean and clobber for the OS
11#
12
13CLEAN_OS =
14CLOBBER_OS = *~ *.bak TAGS tags
15
16SHELL=@SHELL@
17ECHO=echo
18
19CAT=cat
20CP=@CP@
21MV=@MV@
22LN=@LN@
23MKDIR=mkdir
24CHMOD=chmod
25SED=sed
26
27# Global tools
28ifndef PACKHEX
29PACKHEX=$(PROJECT_BIN)/packhex
30endif
31
32ifndef BIN2C
33BIN2C=$(PROJECT_BIN)/rtems-bin2c
34endif
35
36ifndef INSTALL_CHANGE
37INSTALL_CHANGE=$(PROJECT_BIN)/install-if-change
38endif
39INSTALL_VARIANT=$(INSTALL_CHANGE) -V "$(LIB_VARIANT)"
40
41# ksh (or bash) is used by some shell scripts; ref build-tools/scripts/Makefile
42#
43#  Must have shell functions.  Some ksh's core dump mysteriously and
44#  unreliably on RTEMS shell scripts.  bash appears to be the most
45#  reliable but late model ksh's are usually OK.
46KSH=@KSH@
47
48INSTBINFLAGS  = -m 0755
49INSTDATAFLAGS = -m 0644
50INSTLIBFLAGS  = -m 0644
51INSTDIRFLAGS  = -m 0755 -d
52INSTINCFLAGS  = -m 0644
Note: See TracBrowser for help on using the repository browser.