summaryrefslogtreecommitdiffstats
path: root/make/custom/rxgen960.cfg
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-01-10 18:56:10 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-01-10 18:56:10 +0000
commitaa1d76ed8d9ace3395fe5e2d3094d4c11f0dac60 (patch)
tree0661f9ecfedf7c99debe7c74ecc9fc4c17bbf596 /make/custom/rxgen960.cfg
parentDon't look at the object information structure for threads/tasks (diff)
downloadrtems-aa1d76ed8d9ace3395fe5e2d3094d4c11f0dac60.tar.bz2
Missed cleanup from Ralf Corsepius.
Diffstat (limited to '')
-rw-r--r--make/custom/rxgen960.cfg11
1 files changed, 6 insertions, 5 deletions
diff --git a/make/custom/rxgen960.cfg b/make/custom/rxgen960.cfg
index ac7420aaf8..b1e33fa871 100644
--- a/make/custom/rxgen960.cfg
+++ b/make/custom/rxgen960.cfg
@@ -62,11 +62,12 @@ define make-exe
endef
else
define make-exe
- $(CXX) $(CPPFLAGS) $(CFLAGS) $(CFLAGS_LD) -o $(basename $@).exe \
- $(LINK_OBJS) $(LINK_LIBS)
- $(NM) -g -n $(basename $@).exe > $(basename $@).num
- $(OBJCOPY) -oformat binary $(basename $@).exe $(basename $@).bin
- $(SIZE) $(basename $@).exe
+ $(LINK.c) \
+ $(LDLIBS) -o $@ \
+ $(LINK_OBJS) $(LINK_LIBS)
+ $(NM) -g -n $@ > $(basename $@).num
+ $(OBJCOPY) -oformat binary $@ $(basename $@).bin
+ $(SIZE) $@
endef
endif