Changeset dfa6d4b7 in rtems


Ignore:
Timestamp:
12/06/00 15:48:04 (23 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
78d6a50
Parents:
1a505aae
Message:

2000-12-06 Joel Sherrill <joel@…>

  • custom/vegaplus.cfg: Fix make-exe rule and eliminate mkdir and copies that should not be in it.
Location:
make
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • make/ChangeLog

    r1a505aae rdfa6d4b7  
     1
     22000-12-06      Joel Sherrill <joel@OARcorp.com>
     3
     4        * custom/vegaplus.cfg: Fix make-exe rule and eliminate mkdir
     5        and copies that should not be in it.
    16
    272000-12-01      Joel Sherrill <joel@OARcorp.com>
  • make/custom/vegaplus.cfg

    r1a505aae rdfa6d4b7  
    3838define make-exe
    3939        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \
    40             -v -static -Wl,-Map -Wl,Mapfile -o $@ \
     40            -v -static -Wl,-Map -Wl,Mapfile -o $(basename $@).obj \
    4141            $(LINK_OBJS) $(LINK_LIBS)
    4242        $(OBJCOPY) -O binary \
     
    4444            --only-section=.data \
    4545            --only-section=.rodata \
    46             --strip-unneeded $(basename $@).obj $(basename $@).bin
     46            --strip-unneeded $(basename $@).obj $(basename $@).exe
    4747        $(NM) -g -n $(basename $@).obj > $(basename $@).num
    4848        $(SIZE) $(basename $@).obj
    49         test -d ${PROJECT_RELEASE}/bin || mkdir ${PROJECT_RELEASE}/bin
    50         f=`basename $@ .exe`; \
    51         cp $(basename $@).bin  $(basename $@).exe
    52         cp $(basename $@).bin  ${PROJECT_RELEASE}/bin/$${f}$(LIB_VARIANT).exe
     49        # test -d ${PROJECT_RELEASE}/bin || mkdir ${PROJECT_RELEASE}/bin
     50        # f=`basename $@ .exe`; \
     51        # cp $(basename $@).bin  $(basename $@).exe
     52        # cp $(basename $@).bin  ${PROJECT_RELEASE}/bin/$${f}$(LIB_VARIANT).exe
    5353endef
    5454
Note: See TracChangeset for help on using the changeset viewer.