forked from chipsalliance/f4pga-examples
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
33 lines (27 loc) · 878 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright (C) 2021 The SymbiFlow Authors.
#
# Use of this source code is governed by a ISC-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/ISC
#
# SPDX-License-Identifier: ISC
SHELL = bash
PYTHON_SRCS=$(shell find . -name "*.py" -not -path "./env/*" -not -path "./symbiflow/*")
JSON_SRCS=$(shell find . -name "*.json" -not -path "./env/*" -not -path "./symbiflow/*")
VERILOG_SRCS=$(shell find . -name "*.v" -not -path "./env/*" -not -path "./symbiflow/*")
env:
conda env create -f environment.yml
conda activate symbiflow-examples
format:
yapf -i ${PYTHON_SRCS}
for i in ${JSON_SRCS}; do \
echo "$$(mjson $$i)" > $$i; \
done
for i in ${VERILOG_SRCS}; do \
echo "$$(verible-verilog-format $$i)" > $$i; \
done
clean::
rm -rf env/
conda deactivate
conda env remove -n symbiflow-examples
.PHONY: env format clean