summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-01-31 14:46:23 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-01-31 14:46:23 +0000
commit02618872603e758938364e18a81d437c63c73684 (patch)
tree65409406edda8ae8e4e7102fb74df03b0e0bb55e
parentModification to properly support BSP aliases (pc[456]86). (diff)
downloadrtems-02618872603e758938364e18a81d437c63c73684.tar.bz2
Modifications from Ralf to be more like other custom files. There
is no way to build this target.
-rw-r--r--make/custom/portsw.cfg8
1 files changed, 4 insertions, 4 deletions
diff --git a/make/custom/portsw.cfg b/make/custom/portsw.cfg
index 8d499f56df..6129c133cd 100644
--- a/make/custom/portsw.cfg
+++ b/make/custom/portsw.cfg
@@ -45,11 +45,11 @@ 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 $@ \
$(LINK_OBJS) $(LINK_LIBS)
- $(NM) -n $(basename $@).exe > $(basename $@).num
- $(SIZE) $(basename $@).exe
+ $(NM) -n $@ > $(basename $@).num
+ $(SIZE) $@
endef
endif