source: rtems/make/host.cfg.in @ 3264dfc5

4.115
Last change on this file since 3264dfc5 was 3264dfc5, checked in by Joel Sherrill <joel.sherrill@…>, on 07/27/10 at 18:18:16

2010-07-27 Joel Sherrill <joel.sherrill@…>

PR 1532/testing

  • host.cfg.in: Add initial tests for untar capabilities.
  • Property mode set to 100644
File size: 1.1 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
22CP=@CP@
23MV=@MV@
24LN=@LN@
25MKDIR=mkdir
26CHMOD=chmod
27SED=sed
28
29# Global tools
30ifndef PACKHEX
31PACKHEX=$(PROJECT_BIN)/packhex
32endif
33
34ifndef BIN2C
35BIN2C=$(PROJECT_BIN)/rtems-bin2c
36endif
37
38ifndef INSTALL_CHANGE
39INSTALL_CHANGE=$(PROJECT_BIN)/install-if-change
40endif
41INSTALL_VARIANT=$(INSTALL_CHANGE) -V "$(LIB_VARIANT)"
42
43# FIXME: HACK for a bug in cygwin-hosted egcs which returns a mixture
44#        of '\\' and '/' as path separators.
45#        Should be removed as soon as this bug is fixed in egcs.
46GCCSED = @GCCSED@
47
48# ksh (or bash) is used by some shell scripts; ref build-tools/scripts/Makefile
49#
50#  Must have shell functions.  Some ksh's core dump mysteriously and
51#  unreliably on RTEMS shell scripts.  bash appears to be the most
52#  reliable but late model ksh's are usually OK.
53KSH=@KSH@
54
55INSTBINFLAGS  = -m 0755
56INSTDATAFLAGS = -m 0644
57INSTLIBFLAGS  = -m 0644
58INSTDIRFLAGS  = -m 0755 -d
59INSTINCFLAGS  = -m 0644
Note: See TracBrowser for help on using the repository browser.