source: rtems/make/custom/portsw.cfg @ 2fe7208

4.104.114.84.95
Last change on this file since 2fe7208 was 3a8915e, checked in by Joel Sherrill <joel.sherrill@…>, on 08/06/99 at 17:55:25

Patch rtems-rc-19990709-6-diff from Ralf Corsepius <corsepiu@…>
applied. This modified many Makefiles and custom files and makes many more
settings (network, multiprocessing, etc) gnerated by autoconf.

  • Property mode set to 100644
File size: 1.5 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#  NDEBUG (C library)
20#     if defined asserts do not generate code.  This is commonly used
21#     as a command line option.
22#
23#  RTEMS_TEST_NO_PAUSE (RTEMS tests)
24#     do not pause between screens of output in the rtems tests
25#
26#  RTEMS_DEBUG (RTEMS)
27#     If defined, debug checks in RTEMS and support library code are  enabled.
28#
29
30define make-target-options
31        @echo "/* #define NDEBUG 1 */ "                     >>$@
32        @echo "#define RTEMS_TEST_NO_PAUSE 1"               >>$@
33        @echo "/* #define RTEMS_DEBUG  1 */"                >>$@
34endef
35
36
37ifeq ($(RTEMS_USE_GCC272),yes)
38define make-exe
39        $(LD) $(LDFLAGS) -N -e _start \
40            -T$(PROJECT_RELEASE)/lib/linkcmds\
41            -o $(basename $@).exe \
42            $(START_FILE) $(LINK_OBJS) --start-group $(LINK_LIBS) --end-group
43        $(NM) -n $(basename $@).exe > $(basename $@).num
44        $(SIZE) $(basename $@).exe
45endef
46else
47define make-exe
48        $(CC) $(CPPFLAGS) -Wl,-Map,$(basename $@).map \
49            $(CFLAGS) $(CFLAGS_LD) -o $(basename $@).exe \
50            $(LINK_OBJS) $(LINK_LIBS)
51        $(NM) -n $(basename $@).exe > $(basename $@).num
52        $(SIZE) $(basename $@).exe
53endef
54endif
55
56# Miscellaneous additions go here
Note: See TracBrowser for help on using the repository browser.