mirror of
https://github.com/wfjm/w11.git
synced 2026-01-13 07:29:58 +00:00
28 lines
576 B
Makefile
28 lines
576 B
Makefile
# $Id: Makefile 1369 2023-02-08 18:59:50Z mueller $
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
# Copyright 2023- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
|
#
|
|
# Revision History:
|
|
# Date Rev Version Comment
|
|
# 2023-02-07 1369 1.0 Initial version
|
|
#
|
|
VBOM_all = $(wildcard *.vbom)
|
|
BIT_all = $(VBOM_all:.vbom=.bit)
|
|
#
|
|
include ${RETROBASE}/rtl/make_viv/viv_default_basys3.mk
|
|
#
|
|
.PHONY : all clean
|
|
#
|
|
all : $(BIT_all)
|
|
#
|
|
clean : viv_clean
|
|
#
|
|
#----
|
|
#
|
|
include ${RETROBASE}/rtl/make_viv/generic_vivado.mk
|
|
#
|
|
ifndef DONTINCDEP
|
|
include $(VBOM_all:.vbom=.dep_vsyn)
|
|
endif
|
|
#
|