diff options
author | Joel Sherrill <joel.sherrill@OARcorp.com> | 2000-12-06 15:48:04 +0000 |
---|---|---|
committer | Joel Sherrill <joel.sherrill@OARcorp.com> | 2000-12-06 15:48:04 +0000 |
commit | dfa6d4b758fe708e9ebc6e319146b88000faf727 (patch) | |
tree | 13d9be03740350b5cae4eb94b500ee8148bbf22d /make/custom/vegaplus.cfg | |
parent | 2000-12-06 Joel Sherrill <joel@OARcorp.com> (diff) | |
download | rtems-dfa6d4b758fe708e9ebc6e319146b88000faf727.tar.bz2 |
2000-12-06 Joel Sherrill <joel@OARcorp.com>
* custom/vegaplus.cfg: Fix make-exe rule and eliminate mkdir
and copies that should not be in it.
Diffstat (limited to 'make/custom/vegaplus.cfg')
-rw-r--r-- | make/custom/vegaplus.cfg | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/make/custom/vegaplus.cfg b/make/custom/vegaplus.cfg index 190ed2337c..e90fdd3b2b 100644 --- a/make/custom/vegaplus.cfg +++ b/make/custom/vegaplus.cfg @@ -37,19 +37,19 @@ CFLAGS_DEBUG_V = -O1 define make-exe $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \ - -v -static -Wl,-Map -Wl,Mapfile -o $@ \ + -v -static -Wl,-Map -Wl,Mapfile -o $(basename $@).obj \ $(LINK_OBJS) $(LINK_LIBS) $(OBJCOPY) -O binary \ --only-section=.text \ --only-section=.data \ --only-section=.rodata \ - --strip-unneeded $(basename $@).obj $(basename $@).bin + --strip-unneeded $(basename $@).obj $(basename $@).exe $(NM) -g -n $(basename $@).obj > $(basename $@).num $(SIZE) $(basename $@).obj - test -d ${PROJECT_RELEASE}/bin || mkdir ${PROJECT_RELEASE}/bin - f=`basename $@ .exe`; \ - cp $(basename $@).bin $(basename $@).exe - cp $(basename $@).bin ${PROJECT_RELEASE}/bin/$${f}$(LIB_VARIANT).exe + # test -d ${PROJECT_RELEASE}/bin || mkdir ${PROJECT_RELEASE}/bin + # f=`basename $@ .exe`; \ + # cp $(basename $@).bin $(basename $@).exe + # cp $(basename $@).bin ${PROJECT_RELEASE}/bin/$${f}$(LIB_VARIANT).exe endef # Miscellaneous additions go here |