mirror of
https://github.com/wfjm/w11.git
synced 2026-03-07 19:51:43 +00:00
31 lines
693 B
Makefile
31 lines
693 B
Makefile
# $Id: Makefile 1176 2019-06-30 07:16:06Z mueller $
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
# Copyright 2011- by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
|
#
|
|
# Revision History:
|
|
# Date Rev Version Comment
|
|
# 2011-10-14 416 1.0 Initial version
|
|
#
|
|
VBOM_all = $(wildcard *.vbom)
|
|
BIT_all = $(VBOM_all:.vbom=.bit)
|
|
#
|
|
include ${RETROBASE}/rtl/make_ise/xflow_default_s3board.mk
|
|
#
|
|
.PHONY : all clean
|
|
#
|
|
all : $(BIT_all)
|
|
#
|
|
clean : ise_clean
|
|
rm -f $(VBOM_all:.vbom=.ucf)
|
|
#
|
|
#----
|
|
#
|
|
include ${RETROBASE}/rtl/make_ise/generic_xflow.mk
|
|
include ${RETROBASE}/rtl/make_ise/generic_ghdl.mk
|
|
#
|
|
ifndef DONTINCDEP
|
|
include $(VBOM_all:.vbom=.dep_xst)
|
|
include $(VBOM_all:.vbom=.dep_ghdl)
|
|
endif
|
|
#
|