Changeset 753 for soft/giet_vm/Makefile
- Timestamp:
- Jan 6, 2016, 5:14:34 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/Makefile
r739 r753 37 37 applications/shell/shell.py \ 38 38 applications/sort/sort.py \ 39 applications/transpose/transpose.py 39 applications/transpose/transpose.py \ 40 applications/coremark/coremark.py 40 41 41 42 # build the list of applications to be executed (used in the all rule) … … 131 132 132 133 CFLAGS = -Wall -ffreestanding -mno-gpopt -mips32 -g -O2 \ 133 -fno-delete-null-pointer-checks 134 -fno-delete-null-pointer-checks $(XCFLAGS) 134 135 135 136 GIET_INCLUDE = -Igiet_boot \ … … 197 198 cd applications/sort && $(MAKE) clean && cd ../.. 198 199 cd applications/transpose && $(MAKE) clean && cd ../.. 200 cd applications/coremark && $(MAKE) clean && cd ../.. 199 201 200 202 ######################################## 201 203 ### delete disk image 202 204 clean-disk: 203 rm -rf hdd/205 rm -rf $(DISK_IMAGE) 204 206 205 207 ######################################## … … 223 225 mmd -o -i $< ::/bin/sort || true 224 226 mmd -o -i $< ::/bin/transpose || true 227 mmd -o -i $< ::/bin/coremark || true 225 228 mmd -o -i $< ::/misc || true 226 229 mmd -o -i $< ::/home || true … … 240 243 mcopy -o -i $< applications/sort/appli.elf ::/bin/sort || true 241 244 mcopy -o -i $< applications/transpose/appli.elf ::/bin/transpose || true 245 mcopy -o -i $< applications/coremark/appli.elf ::/bin/coremark || true 242 246 mcopy -o -i $< images/images_128.raw ::/misc 243 247 mcopy -o -i $< images/philips_1024.raw ::/misc … … 432 436 $(MAKE) -C applications/transpose 433 437 438 ######################################## 439 ### coremark compilation 440 applications/coremark/appli.elf: build/libs/libuser.a 441 $(MAKE) -C applications/coremark 442
Note: See TracChangeset
for help on using the changeset viewer.