source: rtems/make/custom/bare.cfg @ 969de1f3

4.104.114.84.95
Last change on this file since 969de1f3 was 2b0714f3, checked in by Joel Sherrill <joel.sherrill@…>, on 10/27/00 at 14:33:19

2000-10-27 Ralf Corsepius <corsepiu@…>

  • custom/bare.cfg: Add @ to make-exe, make make-exe more verbose.
  • Property mode set to 100644
File size: 988 bytes
Line 
1#
2#  Config file for the "bare" BSP
3#
4#  $Id$
5#
6
7# This is the actual bsp directory used during the build process.
8RTEMS_BSP_FAMILY=bare
9
10RTEMS_BSP=bare
11
12RTEMS_CPU_MODEL=$(BARE_CPU_MODEL)
13
14CPU_CFLAGS=$(BARE_CPU_CFLAGS)
15
16include $(RTEMS_ROOT)/make/custom/default.cfg
17
18# optimize flag: typically -0, could use -O4 or -fast
19# -O4 is ok for RTEMS
20CFLAGS_OPTIMIZE_V=-O4 -fomit-frame-pointer
21
22#  This section makes the target dependent options file.
23
24define make-target-options
25endef
26
27# this target has no start file
28START_BASE=
29
30# The following are definitions of make-exe which will work using ld as
31# is currently required.  It is expected that as of gcc 2.8, the end user
32# will be able to override parts of the compilers specs and link using gcc.
33
34define make-exe
35        @echo "*** Cannot do a link with the bare bsp. ***"
36        @echo "#!/bin/sh" > $(basename $@).exe
37        @echo "echo \"Cannot do a link with the bare bsp.\"" >> $(basename $@).exe
38endef
39
40# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.