source: rtems/make/custom/portsw.cfg @ ce39123

4.104.114.84.95
Last change on this file since ce39123 was ce39123, checked in by Joel Sherrill <joel.sherrill@…>, on 07/13/00 at 14:53:41

Removed NDEBUG as a per BSP option.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1#
2#  Custom file for "portsw" -- AMD 29205 based board
3#
4#  $Id$
5#
6
7# Note: This file is broken for sure
8
9include $(RTEMS_ROOT)/make/custom/default.cfg
10
11RTEMS_CPU=a29k
12RTEMS_CPU_MODEL=a29205
13
14# This is the actual bsp directory used during the build process.
15RTEMS_BSP_FAMILY=portsw
16
17#  This section makes the target dependent options file.
18
19#  RTEMS_TEST_NO_PAUSE (RTEMS tests)
20#     do not pause between screens of output in the rtems tests
21#
22
23define make-target-options
24        @echo "#define RTEMS_TEST_NO_PAUSE 1"               >>$@
25endef
26
27
28ifeq ($(RTEMS_USE_GCC272),yes)
29define make-exe
30        $(LD) $(LDFLAGS) -N -e _start \
31            -T$(PROJECT_RELEASE)/lib/linkcmds\
32            -o $(basename $@).exe \
33            $(START_FILE) $(LINK_OBJS) --start-group $(LINK_LIBS) --end-group
34        $(NM) -n $(basename $@).exe > $(basename $@).num
35        $(SIZE) $(basename $@).exe
36endef
37else
38define make-exe
39        $(LINK.c) -Wl,-Map,$(basename $@).map \
40            $(LDLIBS) -o $@ \
41            $(LINK_OBJS) $(LINK_LIBS)
42        $(NM) -n $@ > $(basename $@).num
43        $(SIZE) $@
44endef
45endif
46
47# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.