aboutsummaryrefslogtreecommitdiffstats
path: root/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_replay/Makefile.srcs
diff options
context:
space:
mode:
authorWade Fife <wade.fife@ettus.com>2020-04-06 16:19:50 -0500
committerAaron Rossetto <aaron.rossetto@ni.com>2020-08-04 15:40:08 -0500
commit6d92a1828121ca4b57d496bbf522820f961244b9 (patch)
treef0659ab6d1a6e1f8801db356e2237388d90724f2 /fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_replay/Makefile.srcs
parent24f8bb39fd2769ff93d11b21152a834500152de4 (diff)
downloaduhd-6d92a1828121ca4b57d496bbf522820f961244b9.tar.gz
uhd-6d92a1828121ca4b57d496bbf522820f961244b9.tar.bz2
uhd-6d92a1828121ca4b57d496bbf522820f961244b9.zip
fpga: rfnoc: Add RFNoC Replay block
Diffstat (limited to 'fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_replay/Makefile.srcs')
-rw-r--r--fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_replay/Makefile.srcs24
1 files changed, 24 insertions, 0 deletions
diff --git a/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_replay/Makefile.srcs b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_replay/Makefile.srcs
new file mode 100644
index 000000000..e968005b5
--- /dev/null
+++ b/fpga/usrp3/lib/rfnoc/blocks/rfnoc_block_replay/Makefile.srcs
@@ -0,0 +1,24 @@
+#
+# 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_replay_regs.vh \
+axis_replay.v \
+noc_shell_replay.v \
+rfnoc_block_replay.v \
+)