source: rtems/make/custom/mvme162.cfg @ ea56a072

4.104.114.84.95
Last change on this file since ea56a072 was ea56a072, checked in by Joel Sherrill <joel.sherrill@…>, on 07/12/00 at 19:27:02

Removed stupid reference to NO_TABLE_MOVE in comment block.

  • Property mode set to 100644
File size: 2.6 KB
Line 
1#
2#  Config file for the mvme162 BSP
3#
4#  $Id$
5#
6
7include $(RTEMS_ROOT)/make/custom/default.cfg
8
9RTEMS_CPU=m68k
10
11ifeq ($(RTEMS_MVME162_MODEL),mvme162lx)
12
13RTEMS_CPU_MODEL=m68lc040
14
15else
16ifeq ($(RTEMS_MVME162_MODEL),)
17
18RTEMS_MVME162_MODEL=mvme162
19RTEMS_CPU_MODEL=m68040
20
21endif # mvme162   - mc68040
22endif # mvme162lx - mc68lc040
23
24# This is the actual bsp directory used during the build process.
25RTEMS_BSP_FAMILY=mvme162
26
27#  This contains the compiler options necessary to select the CPU model
28#  and (hopefully) optimize for it.
29#
30
31ifeq ($(RTEMS_CPU_MODEL),m68040)
32CPU_CFLAGS = -m68040
33else
34ifeq ($(RTEMS_CPU_MODEL),m68lc040)
35CPU_CFLAGS = -m68040 -msoft-float
36endif # mc68040
37endif # mc68lc040
38
39# optimize flag: typically -0, could use -O4 or -fast
40# -O4 is ok for RTEMS
41CFLAGS_OPTIMIZE_V=-O4 -fomit-frame-pointer
42
43#  This section makes the target dependent options file.
44
45#  NDEBUG (C library)
46#     if defined asserts do not generate code.  This is commonly used
47#     as a command line option.
48#
49#  RTEMS_TEST_NO_PAUSE (RTEMS tests)
50#     do not pause between screens of output in the rtems tests
51
52define make-target-options
53        @echo "#undef $(RTEMS_MVME162_MODEL)"               >>$@
54        @echo "#define $(RTEMS_MVME162_MODEL)"              >>$@
55        @echo "/* #define NDEBUG 1 */ "                     >>$@
56        @echo "#define RTEMS_TEST_NO_PAUSE 1"               >>$@
57endef
58
59# The following are definitions of make-exe which will work using ld as
60# is currently required.  It is expected that as of gcc 2.8, the end user
61# will be able to override parts of the compilers specs and link using gcc.
62
63ifeq ($(RTEMS_USE_GCC272),yes)
64
65ifeq ($(RTEMS_CPU_MODEL),m68lc040)
66# override default location of Standard C Library
67LIBC_LIBC=$(RTEMS_LIBC_DIR)/lib/msoft-float/libc.a
68LIBC_LIBM=$(RTEMS_LIBC_DIR)/lib/msoft-float/libm.a
69endif # mc68lc040
70
71define make-exe
72        $(LD) $(LDFLAGS) -N -T $(LINKCMDS) -o $(basename $@).nxe \
73            $(START_FILE) $(LINK_OBJS) \
74            --start-group $(LINK_LIBS) --end-group
75        $(OBJCOPY) -O srec $(basename $@).nxe $(basename $@).i
76        $(SED) -e 's/.$$//' -e '/^S0/d' $(basename $@).i | \
77            $(PACKHEX) > $(basename $@).exe
78        $(NM) -g -n $(basename $@).nxe > $(basename $@).num
79        $(SIZE) $(basename $@).nxe
80endef
81else
82define make-exe
83        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \
84            -o $(basename $@).nxe $(LINK_OBJS) $(LINK_LIBS)
85        $(OBJCOPY) -O srec $(basename $@).nxe $(basename $@).i
86        $(SED) -e 's/.$$//' -e '/^S0/d' $(basename $@).i | \
87            $(PACKHEX) > $(basename $@).exe
88        $(NM) -g -n $(basename $@).nxe > $(basename $@).num
89        $(SIZE) $(basename $@).nxe
90endef
91endif
92
93# Miscellaneous additions go here
94
95# BSP-specific tools
96SLOAD=$(PROJECT_TOOLS)/sload
Note: See TracBrowser for help on using the repository browser.