Changeset 418 for soft/giet_vm/Makefile
- Timestamp:
- Sep 29, 2014, 12:11:24 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/Makefile
r389 r418 12 12 Y ?= 2 13 13 P ?= 2 14 FBF ?= 1024 14 15 APP ?= convol 15 16 … … 56 57 ### Objects to be linked for boot.elf 57 58 BOOT_OBJS = build/common/utils.o \ 59 build/common/pmem.o \ 58 60 build/common/vmem.o \ 59 61 build/fat32/fat32.o \ … … 193 195 ### mapping generation: map.bin / map.xml / hard_config.h / giet_vsegs.ld 194 196 map.bin hard_config.h giet_vsegs.ld: $(ARCH)/arch.py $(APP)/$(APP).py 195 giet_python/genmap --arch=$(ARCH) --x=$(X) --y=$(Y) --p=$(P) --giet=. --$(APP) --xml=. 197 giet_python/genmap --arch=$(ARCH) \ 198 --x=$(X) \ 199 --y=$(Y) \ 200 --p=$(P) \ 201 --fbf=$(FBF) \ 202 --giet=. \ 203 --$(APP) \ 204 --xml=. 196 205 197 206 ### drivers compilation … … 325 334 build/common/vmem.o: giet_common/vmem.c \ 326 335 giet_common/vmem.h \ 336 hard_config.h \ 337 giet_config.h 338 $(CC) $(GIET_INCLUDE) $(CFLAGS) -c -o $@ $< 339 340 build/common/pmem.o: giet_common/pmem.c \ 341 giet_common/pmem.h \ 327 342 hard_config.h \ 328 343 giet_config.h
Note: See TracChangeset
for help on using the changeset viewer.