Skip to content
Snippets Groups Projects
Select Git revision
  • 85fdd66f1e488f4e689b62a7afe14f4f26d567ad
  • master default protected
2 results

makefile

Blame
  • makefile 929 B
    include $(SOCLABS_AHB_QSPI_DIR)/make.cfg
    
    #-------------------------------------
    # - Commonly Overloaded Variables
    #-------------------------------------
    # Simulator type (mti/vcs/xm)
    SIMULATOR   = mti
    
    #-------------------------------------
    # - Directory Setups
    #-------------------------------------
    # Directory to put simulation files
    SIM_TOP_DIR ?= $(SOCLABS_AHB_QSPI_DIR)/simulate/sim
    SIM_DIR ?= $(SIM_TOP_DIR)
    
    
    ifeq ($(ASIC),yes)
    	DESIGN_VC ?= $(SOCLABS_AHB_QSPI_DIR)/flist/Top/ahb_QSPI_ASIC.flist
    else
    	DESIGN_VC ?= $(SOCLABS_AHB_QSPI_DIR)/flist/Top/ahb_QSPI_SIM.flist
    endif
    
    get_flash_model:
    	@cd $(SOCLABS_AHB_QSPI_DIR)/verif/VIP; wget https://ww1.microchip.com/downloads/en/DeviceDoc/SST26VF064B.zip 
    	@cd $(SOCLABS_AHB_QSPI_DIR)/verif/VIP; unzip SST26VF064B.zip
    	@cd $(SOCLABS_AHB_QSPI_DIR)/verif/VIP; rm SST26VF064B.zip
    
    #Include flows
    include ./flows/makefile.simulate
    include ./flows/makefile.lint
    export BP210_DIR