Changeset 418 for soft/giet_vm/Makefile


Ignore:
Timestamp:
Sep 29, 2014, 12:11:24 PM (10 years ago)
Author:
alain
Message:

Introducing the Frame Buffer size as platform parameter.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/Makefile

    r389 r418  
    1212Y    ?= 2
    1313P    ?= 2
     14FBF  ?= 1024
    1415APP  ?= convol
    1516
     
    5657### Objects to be linked for boot.elf
    5758BOOT_OBJS    = build/common/utils.o       \
     59               build/common/pmem.o        \
    5860               build/common/vmem.o        \
    5961               build/fat32/fat32.o        \
     
    193195### mapping generation: map.bin / map.xml / hard_config.h / giet_vsegs.ld
    194196map.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=.
    196205
    197206### drivers compilation
     
    325334build/common/vmem.o: giet_common/vmem.c \
    326335                     giet_common/vmem.h \
     336                     hard_config.h      \
     337                     giet_config.h
     338        $(CC) $(GIET_INCLUDE) $(CFLAGS)  -c -o $@ $<
     339
     340build/common/pmem.o: giet_common/pmem.c \
     341                     giet_common/pmem.h \
    327342                     hard_config.h      \
    328343                     giet_config.h
Note: See TracChangeset for help on using the changeset viewer.