mirror of
https://github.com/wfjm/w11.git
synced 2026-01-12 00:43:01 +00:00
36 lines
892 B
Makefile
36 lines
892 B
Makefile
# -*- makefile-gmake -*-
|
|
# $Id: Makefile.ise 1176 2019-06-30 07:16:06Z mueller $
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
# Copyright 2007-2014 by Walter F.J. Mueller <W.F.J.Mueller@gsi.de>
|
|
#
|
|
# Revision History:
|
|
# Date Rev Version Comment
|
|
# 2014-07-27 545 1.1.1 make reference board configurable via XTW_BOARD
|
|
# 2011-08-13 405 1.1 use includes from rtl/make
|
|
# 2007-12-09 100 1.0.1 drop ISE_p def
|
|
# 2007-07-08 65 1.0 Initial version
|
|
#
|
|
VBOM_all = $(wildcard *.vbom)
|
|
NGC_all = $(VBOM_all:.vbom=.ngc)
|
|
#
|
|
# reference board for test synthesis is Spartan-6 based Nexys3
|
|
ifndef XTW_BOARD
|
|
XTW_BOARD=nexys3
|
|
endif
|
|
include ${RETROBASE}/rtl/make_ise/xflow_default_$(XTW_BOARD).mk
|
|
#
|
|
.PHONY : all clean
|
|
#
|
|
all : $(NGC_all)
|
|
#
|
|
clean : ise_clean
|
|
#
|
|
#----
|
|
#
|
|
include ${RETROBASE}/rtl/make_ise/generic_xflow.mk
|
|
#
|
|
ifndef DONTINCDEP
|
|
include $(VBOM_all:.vbom=.dep_xst)
|
|
endif
|
|
#
|