mirror of
https://github.com/chipsalliance/f4pga-examples.git
synced 2025-01-03 03:43:38 -05:00
7b623cdfdf
Signed-off-by: Tim 'mithro' Ansell <me@mith.ro>
10 lines
288 B
Makefile
10 lines
288 B
Makefile
mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST)))
|
|
current_dir := $(patsubst %/,%,$(dir $(mkfile_path)))
|
|
TOP:=top
|
|
VERILOG:=btn_counter.v
|
|
DEVICE := ql-eos-s3
|
|
PARTNAME := pd64
|
|
PCF:=chandalar.pcf
|
|
|
|
all:
|
|
ql_symbiflow -compile -d ${DEVICE} -P ${PARTNAME} -v ${VERILOG} -t ${TOP} -p ${PCF}
|