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

5
Last change on this file since 1f283f17 was e8b28ba, checked in by Sebastian Huber <sebastian.huber@…>, on 06/07/18 at 04:37:39

tools: Remove packhex

All tools should be removed from the RTEMS source repository at some
point in time. Tools with a BSD-style license will be moved to the
RTEMS tools repository. Unfortunately, this tool has no license
information.

Remove all uses of this tool from the code base. Users of HEX files
should consider to use ELF instead.

Close #3379.

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