summaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2006-11-14 02:43:13 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2006-11-14 02:43:13 +0000
commitaac2fff58b5143311426632f8900e9d27cc9dc3b (patch)
tree6fa04603bbedcbabbce1ccd082643fad7aab04c6 /make
parentRemove ASFLAGS, CPU_ASFLAGS (Unused). (diff)
downloadrtems-aac2fff58b5143311426632f8900e9d27cc9dc3b.tar.bz2
Remove hard-code compiler flags.
Diffstat (limited to 'make')
-rw-r--r--make/custom/uC5282.cfg4
1 files changed, 2 insertions, 2 deletions
diff --git a/make/custom/uC5282.cfg b/make/custom/uC5282.cfg
index 86467d7c06..9d403a8d22 100644
--- a/make/custom/uC5282.cfg
+++ b/make/custom/uC5282.cfg
@@ -22,13 +22,13 @@ CFLAGS_OPTIMIZE_V= -O4 -g
# will be able to override parts of the compilers specs and link using gcc.
define make-exe
- $(LINK.c) $(AM_CFLAGS) -m5200 $(AM_LDFLAGS) -o $(basename $@).nxe \
+ $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).nxe \
$(LINK_OBJS) $(LINK_LIBS)
$(OBJCOPY) -O binary --strip-all $(basename $@).nxe $@
$(SIZE) $(basename $@).nxe
endef
define make-cxx-exe
- $(LINK.cc) $(AM_CFLAGS) -m5200 $(AM_LDFLAGS) -o $(basename $@).nxe \
+ $(LINK.cc) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).nxe \
$(LINK_OBJS) $(LINK_LIBS)
$(OBJCOPY) -O binary --strip-all $(basename $@).nxe $@
$(SIZE) $(basename $@).nxe