diff options
author | Jesse Zhang <65556515+jessezhang-ni@users.noreply.github.com> | 2020-07-24 00:08:18 -0500 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2020-07-30 12:50:30 -0500 |
commit | 8db024d43bbb7cd05f5b18dd3d7cec09cac6ec4b (patch) | |
tree | eddf1deb08c700e58996b6ea84fd77948caf0d8c /fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_switchboard/Makefile.srcs | |
parent | 25a0e462ddc8ca737415dbae4feb90787e6a35b2 (diff) | |
download | uhd-8db024d43bbb7cd05f5b18dd3d7cec09cac6ec4b.tar.gz uhd-8db024d43bbb7cd05f5b18dd3d7cec09cac6ec4b.tar.bz2 uhd-8db024d43bbb7cd05f5b18dd3d7cec09cac6ec4b.zip |
fpga: Add Switchboard RFNoC block
Diffstat (limited to 'fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_switchboard/Makefile.srcs')
-rw-r--r-- | fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_switchboard/Makefile.srcs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_switchboard/Makefile.srcs b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_switchboard/Makefile.srcs new file mode 100644 index 000000000..2b44c0416 --- /dev/null +++ b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_switchboard/Makefile.srcs @@ -0,0 +1,23 @@ +# +# Copyright 2020 Ettus Research, a National Instruments Brand +# +# SPDX-License-Identifier: LGPL-3.0-or-later +# + +################################################## +# RFNoC Block Sources +################################################## +# Here, list all the files that are necessary to synthesize this block. Don't +# include testbenches! +# Make sure that the source files are nicely detectable by a regex. Best to put +# one on each line. +# The first argument to addprefix is the current path to this Makefile, so the +# path list is always absolute, regardless of from where we're including or +# calling this file. RFNOC_OOT_SRCS needs to be a simply expanded variable +# (not a recursively expanded variable), and we take care of that in the build +# infrastructure. +RFNOC_OOT_SRCS += $(addprefix $(dir $(abspath $(lastword $(MAKEFILE_LIST)))), \ +rfnoc_block_switchboard.v \ +rfnoc_block_switchboard_regs.vh \ +noc_shell_switchboard.v \ +) |