Changeset 256
- Timestamp:
- Nov 21, 2013, 7:32:28 PM (11 years ago)
- Location:
- soft/giet_vm
- Files:
-
- 4 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/Makefile
r253 r256 50 50 build/libs/malloc.o 51 51 52 SORT_OBJS = build/sort/main.o \ 53 build/libs/stdio.o \ 54 build/libs/barrier.o 52 55 53 56 CFLAGS = -Wall -ffreestanding -mno-gpopt -mips32 … … 66 69 build/gameoflife/gameoflife.elf \ 67 70 build/dhrystone/dhrystone.elf \ 71 build/sort/sort.elf \ 68 72 69 73 $(MAKE) -C memo … … 150 154 $(CC) $(INCLUDE) $(CFLAGS) -c -o $@ $< 151 155 156 ### sort compilation 157 build/sort/sort.elf: $(SORT_OBJS) sort/sort.ld 158 $(LD) -o $@ -T sort/sort.ld $(SORT_OBJS) 159 $(DU) -D $@ > $@.txt 160 161 build/sort/main.o: sort/main.c 162 $(CC) $(INCLUDE) $(CFLAGS) -O3 -c -o $@ $< 163 152 164 ### libs compilation 153 165 build/libs/utils.o: libs/utils.c giet_config.h
Note: See TracChangeset
for help on using the changeset viewer.