All hardware sources for this design are under the hw_src directory and can
be built by running make. Before doing so, edit config.mk or override these
values on the command line to point to your particular system:
# Options for TARGET: sw_emu, hw_emu and hw
TARGET ?= hw
# Options for DEVICE: u200, u250. Default platform is XDMA, defined by PLATFORM
DEVICE ?= u250
# If other some specific platforms needs to be used, provide platform path directly
PLATFORM ?= xilinx_$(DEVICE)_gen3x16_xdma_2_202110_1
# If your platform is not in the standard install area edit this line
PLATFORM_REPO_PATH ?= /opt/xilinx/platforms/
Then build the platform:
cd hw_src
make
Alternately, if you want to specify a particular platform on the command line, run:
cd hw_src
PLATFORM=xilinx_u250_gen3x16_xdma_4_1_202210_1 make
Substitute your platform name as needed.