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

5
Last change on this file since d8de6b9 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 932 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
25ifndef PACKHEX
26PACKHEX=$(PROJECT_BIN)/packhex
27endif
28
29ifndef BIN2C
30BIN2C=$(PROJECT_BIN)/rtems-bin2c
31endif
32
33ifndef INSTALL_CHANGE
34INSTALL_CHANGE=$(PROJECT_BIN)/install-if-change
35endif
36INSTALL_VARIANT=$(INSTALL_CHANGE) -V "$(LIB_VARIANT)"
37
38# ksh (or bash) is used by some shell scripts; ref build-tools/scripts/Makefile
39#
40#  Must have shell functions.  Some ksh's core dump mysteriously and
41#  unreliably on RTEMS shell scripts.  bash appears to be the most
42#  reliable but late model ksh's are usually OK.
43KSH=@KSH@
44
45INSTBINFLAGS  = -m 0755
46INSTDATAFLAGS = -m 0644
47INSTLIBFLAGS  = -m 0644
48INSTDIRFLAGS  = -m 0755 -d
49INSTINCFLAGS  = -m 0644
Note: See TracBrowser for help on using the repository browser.