summaryrefslogtreecommitdiffstats
path: root/make/custom/gen68340.cfg
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-06-12 15:00:15 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-06-12 15:00:15 +0000
commitdf49c60c9671e4a28e636964d744c1f59fb6cb68 (patch)
treeeabd85e189514ad412a35414ba5d483dcda3ef1f /make/custom/gen68340.cfg
parentPurged as many egcs references as possible. (diff)
downloadrtems-df49c60c9671e4a28e636964d744c1f59fb6cb68.tar.bz2
Merged from 4.5.0-beta3a
Diffstat (limited to 'make/custom/gen68340.cfg')
-rw-r--r--make/custom/gen68340.cfg36
1 files changed, 18 insertions, 18 deletions
diff --git a/make/custom/gen68340.cfg b/make/custom/gen68340.cfg
index f2c2f71fc8..7511e795e4 100644
--- a/make/custom/gen68340.cfg
+++ b/make/custom/gen68340.cfg
@@ -59,25 +59,25 @@ endef
else
define make-exe
- $(CC) $(CPPFLAGS) $(CFLAGS) $(CFLAGS_LD) \
- -o $(basename $@).exe $(LINK_OBJS) $(LINK_LIBS)
- $(NM) -g -n $(basename $@).exe > $(basename $@).num
- $(SIZE) $(basename $@).exe
- # if you want to make a prom image
- # m68k-rtems-objcopy --adjust-section-vma \
- # .data=`m68k-rtems-objdump --section-headers $(basename $@).exe | \
- # awk 'function h2d(x) { x=toupper(x); digits=length(x); s=0 ; \
- # for (p=digits; p>0; p--) \
- # s += (16^(p-1)) * ( index("0123456789ABCDEF",\
- # substr(x,1+digits-p,1)) -1 );\
- # return s } ;\
- # /\.text/ { base = $$4 ; size = $$3 };\
- # END { printf("0x%x", h2d(base) + h2d(size)) }'\
- # ` $(basename $@).exe
- # if you want to convert it to ieee
- # m68k-rtems-objcopy --output-target=ieee --debugging \
- # $(basename $@).exe $(basename $@).ieee
+ $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \
+ -o $@ $(LINK_OBJS) $(LINK_LIBS)
+ $(NM) -g -n $@ > $(basename $@).num
+ $(SIZE) $@
endef
+# if you want to make a prom image
+# m68k-rtems-objcopy --adjust-section-vma \
+# .data=`m68k-rtems-objdump --section-headers $(basename $@).exe | \
+# awk 'function h2d(x) { x=toupper(x); digits=length(x); s=0 ; \
+# for (p=digits; p>0; p--) \
+# s += (16^(p-1)) * ( index("0123456789ABCDEF",\
+# substr(x,1+digits-p,1)) -1 );\
+# return s } ;\
+# /\.text/ { base = $$4 ; size = $$3 };\
+# END { printf("0x%x", h2d(base) + h2d(size)) }'\
+# ` $(basename $@).exe
+# if you want to convert it to ieee
+# m68k-rtems-objcopy --output-target=ieee --debugging \
+# $(basename $@).exe $(basename $@).ieee
endif