1 |
30 |
unneback |
#
|
2 |
|
|
# Config file for the dmv152 BSP
|
3 |
|
|
#
|
4 |
|
|
# $Id: dmv152.cfg,v 1.2 2001-09-27 12:02:52 chris Exp $
|
5 |
|
|
#
|
6 |
|
|
|
7 |
|
|
include $(RTEMS_ROOT)/make/custom/default.cfg
|
8 |
|
|
|
9 |
|
|
RTEMS_CPU=m68k
|
10 |
|
|
RTEMS_CPU_MODEL=m68020
|
11 |
|
|
|
12 |
|
|
# This is the actual bsp directory used during the build process.
|
13 |
|
|
RTEMS_BSP_FAMILY=dmv152
|
14 |
|
|
|
15 |
|
|
#
|
16 |
|
|
# This contains the compiler options necessary to select the CPU model
|
17 |
|
|
# and (hopefully) optimize for it.
|
18 |
|
|
#
|
19 |
|
|
|
20 |
|
|
CPU_CFLAGS =
|
21 |
|
|
|
22 |
|
|
# optimize flag: typically -0, could use -O4 or -fast
|
23 |
|
|
# -O4 is ok for RTEMS
|
24 |
|
|
CFLAGS_OPTIMIZE_V=-O4 -fomit-frame-pointer
|
25 |
|
|
|
26 |
|
|
# This section makes the target dependent options file.
|
27 |
|
|
# NDEBUG (C library)
|
28 |
|
|
# if defined asserts do not generate code. This is commonly used
|
29 |
|
|
# as a command line option.
|
30 |
|
|
#
|
31 |
|
|
# RTEMS_TEST_NO_PAUSE (RTEMS tests)
|
32 |
|
|
# do not pause between screens of output in the rtems tests
|
33 |
|
|
#
|
34 |
|
|
# RTEMS_DEBUG (RTEMS)
|
35 |
|
|
# If defined, debug checks in RTEMS and support library code are enabled.
|
36 |
|
|
#
|
37 |
|
|
# USE_CHANNEL_A (DMV152)
|
38 |
|
|
# USE_CHANNEL_B (DMV152)
|
39 |
|
|
# One and only one of these should be set to 1 to indicate which
|
40 |
|
|
# serial port is used as the RTEMS console.
|
41 |
|
|
|
42 |
|
|
define make-target-options
|
43 |
|
|
@echo "/* #define NDEBUG 1 */ " >>$@
|
44 |
|
|
@echo "#define RTEMS_TEST_NO_PAUSE 1" >>$@
|
45 |
|
|
@echo "/* #define RTEMS_DEBUG 1 */" >>$@
|
46 |
|
|
@echo "#define USE_CHANNEL_A 1" >>$@
|
47 |
|
|
@echo "#define USE_CHANNEL_B 0" >>$@
|
48 |
|
|
endef
|
49 |
|
|
|
50 |
|
|
# Here is the rule to actually build a $(ARCH)/foo.exe
|
51 |
|
|
# It also builds $(ARCH)/foo.sr and $(ARCH)/foo.nm
|
52 |
|
|
# Usage ref: src/tests/sptest/sp1/Makefile
|
53 |
|
|
|
54 |
|
|
# The following are definitions of make-exe which will work using ld as
|
55 |
|
|
# is currently required. It is expected that as of gcc 2.8, the end user
|
56 |
|
|
# will be able to override parts of the compilers specs and link using gcc.
|
57 |
|
|
|
58 |
|
|
ifeq ($(RTEMS_USE_GCC272),yes)
|
59 |
|
|
define make-exe
|
60 |
|
|
$(LD) $(LDFLAGS) -N -T $(LINKCMDS) -o $(basename $@).nxe \
|
61 |
|
|
$(START_FILE) $(LINK_OBJS) --start-group $(LINK_LIBS) --end-group
|
62 |
|
|
$(OBJCOPY) -O srec $(basename $@).nxe $(basename $@).i
|
63 |
|
|
$(SED) -e 's/.$$//' -e '/^S0/d' $(basename $@).i | \
|
64 |
|
|
$(PACKHEX) > $(basename $@).exe
|
65 |
|
|
$(NM) -g -n $(basename $@).nxe > $(basename $@).num
|
66 |
|
|
$(SIZE) $(basename $@).nxe
|
67 |
|
|
endef
|
68 |
|
|
else
|
69 |
|
|
define make-exe
|
70 |
|
|
$(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).nxe \
|
71 |
|
|
$(LINK_OBJS) $(LINK_LIBS)
|
72 |
|
|
$(OBJCOPY) -O srec $(basename $@).nxe $(basename $@).i
|
73 |
|
|
$(SED) -e 's/.$$//' -e '/^S0/d' $(basename $@).i | \
|
74 |
|
|
$(PACKHEX) > $@
|
75 |
|
|
$(NM) -g -n $(basename $@).nxe > $(basename $@).num
|
76 |
|
|
$(SIZE) $(basename $@).nxe
|
77 |
|
|
endef
|
78 |
|
|
endif
|
79 |
|
|
|
80 |
|
|
# Miscellaneous additions go here
|