blob: 1d238d83c820781cbc67e7abdd5dd66e94445428 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#
# Copyright 2021 Ettus Research, a National Instruments Brand
#
# SPDX-License-Identifier: LGPL-3.0-or-later
#
include $(IP_DIR)/on_chip_flash/Makefile.inc
include $(IP_DIR)/clkctrl/Makefile.inc
IP_SRCS = \
$(IP_ON_CHIP_FLASH_SRCS) \
$(IP_CLKCTRL_SRCS)
IP_OUTPUTS = \
$(IP_ON_CHIP_FLASH_OUTS) \
$(IP_CLKCTRL_OUTS)
ip: $(IP_OUTPUTS)
.PHONY: ip
|