source: rtems/make/host.cfg.in @ b8bf934

4.104.114.84.95
Last change on this file since b8bf934 was 1db8d62f, checked in by Joel Sherrill <joel.sherrill@…>, on 02/05/01 at 18:21:18

2001-02-03 Ralf Corsepius <corsepiu@…>

  • lib.cfg: include $(PROJECT_ROOT)/make/leaf.cfg
  • main.cfg: Set PROJECT_RELEASE=$(exec_prefix)/$(RTEMS_BSP).
  • host.cfg.in: Remove RM, make-script.
  • ChangeLog?: Remove bogus 2001-01-22 entry.
  • 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 INSTALL_CHANGE
35INSTALL_CHANGE=$(PROJECT_BIN)/install-if-change
36endif
37INSTALL_VARIANT=$(INSTALL_CHANGE) -V "$(LIB_VARIANT)"
38
39# FIXME: HACK for a bug in cygwin-hosted egcs which returns a mixture
40#        of '\\' and '/' as path separators.
41#        Should be removed as soon as this bug is fixed in egcs.
42GCCSED = @GCCSED@
43
44# ksh (or bash) is used by some shell scripts; ref build-tools/scripts/Makefile
45#
46#  Must have shell functions.  Some ksh's core dump mysteriously and
47#  unreliably on RTEMS shell scripts.  bash appears to be the most
48#  reliable but late model ksh's are usually OK.
49KSH=@KSH@
50
51INSTBINFLAGS  = -m 0755
52INSTDATAFLAGS = -m 0644
53INSTLIBFLAGS  = -m 0644
54INSTDIRFLAGS  = -m 0755 -d
55INSTINCFLAGS  = -m 0644
Note: See TracBrowser for help on using the repository browser.