summaryrefslogtreecommitdiffstats
path: root/make/custom/gensh1.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'make/custom/gensh1.cfg')
-rw-r--r--make/custom/gensh1.cfg16
1 files changed, 7 insertions, 9 deletions
diff --git a/make/custom/gensh1.cfg b/make/custom/gensh1.cfg
index b5d98630e2..5dc58d8e82 100644
--- a/make/custom/gensh1.cfg
+++ b/make/custom/gensh1.cfg
@@ -8,7 +8,7 @@
# $Id$
#
-MHZ=20
+HZ=20000000
include $(RTEMS_ROOT)/make/custom/default.cfg
@@ -20,19 +20,17 @@ RTEMS_BSP_FAMILY=gensh1
# BSP specific preprocessor flags.
# These should only be used in BSP dependent directories.
-BSP_CPPFLAGS=-DMHZ=$(MHZ)
+BSP_CPPFLAGS=-DHZ=$(HZ)
#
# This contains the compiler options necessary to select the CPU model
# and (hopefully) optimize for it.
#
-# HACK: We have to append BSP_CPPFLAGS to CPU_CFLAGS, because
-# per BSP and per CPU CPPFLAGS are not (yet?) supported
-CPU_CFLAGS=-m1 $(BSP_CPPFLAGS)
-# CPU_CFLAGS=-m1
+CPU_CFLAGS=-m1
# debug flags: typically none, but we use -O1 as it produces better code
-CFLAGS_DEBUG_V = -O1
+# CFLAGS_DEBUG_V = -O1
+CFLAGS_DEBUG_V =
# optimize flag: typically -0, could use -O4 or -fast
# -O4 is ok for RTEMS
@@ -75,8 +73,8 @@ define make-exe
endef
else
define make-exe
- $(CC) $(CPPFLAGS) -Wl,-Map,$(basename $@).map \
- $(CFLAGS) $(CFLAGS_LD) -o $(basename $@).exe \
+ $(LINK.c) -Wl,-Map,$(basename $@).map \
+ $(LDLIBS) -o $(basename $@).exe \
$(LINK_OBJS) $(LINK_LIBS)
$(NM) -n $(basename $@).exe > $(basename $@).num
$(SIZE) $(basename $@).exe