Changeset 753 for soft/giet_vm/Makefile


Ignore:
Timestamp:
Jan 6, 2016, 5:14:34 PM (9 years ago)
Author:
cfuguet
Message:

Introducing the coremark benchmark

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/Makefile

    r739 r753  
    3737                 applications/shell/shell.py            \
    3838                 applications/sort/sort.py              \
    39                  applications/transpose/transpose.py
     39                 applications/transpose/transpose.py    \
     40                 applications/coremark/coremark.py
    4041
    4142# build the list of applications to be executed (used in the all rule)
     
    131132
    132133CFLAGS = -Wall -ffreestanding -mno-gpopt -mips32 -g -O2 \
    133                  -fno-delete-null-pointer-checks
     134                 -fno-delete-null-pointer-checks $(XCFLAGS)
    134135
    135136GIET_INCLUDE = -Igiet_boot    \
     
    197198        cd applications/sort         && $(MAKE) clean && cd ../..
    198199        cd applications/transpose    && $(MAKE) clean && cd ../..
     200        cd applications/coremark     && $(MAKE) clean && cd ../..
    199201
    200202########################################
    201203### delete disk image
    202204clean-disk:
    203         rm -rf hdd/
     205        rm -rf $(DISK_IMAGE)
    204206
    205207########################################
     
    223225        mmd -o -i $< ::/bin/sort          || true
    224226        mmd -o -i $< ::/bin/transpose     || true
     227        mmd -o -i $< ::/bin/coremark      || true
    225228        mmd -o -i $< ::/misc              || true
    226229        mmd -o -i $< ::/home              || true
     
    240243        mcopy -o -i $< applications/sort/appli.elf ::/bin/sort                || true
    241244        mcopy -o -i $< applications/transpose/appli.elf ::/bin/transpose      || true
     245        mcopy -o -i $< applications/coremark/appli.elf ::/bin/coremark        || true
    242246        mcopy -o -i $< images/images_128.raw ::/misc
    243247        mcopy -o -i $< images/philips_1024.raw ::/misc
     
    432436        $(MAKE) -C applications/transpose
    433437
     438########################################
     439### coremark compilation
     440applications/coremark/appli.elf: build/libs/libuser.a
     441        $(MAKE) -C applications/coremark
     442
Note: See TracChangeset for help on using the changeset viewer.