Skip to content

Commit 24236cd

Browse files
committed
The package structure is rearranged so as to be like standard Python package style.
1 parent 4eccd6f commit 24236cd

File tree

170 files changed

+28
-23
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

170 files changed

+28
-23
lines changed

Makefile

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,8 @@
11
.PHONY: all
22
all:
3-
make -C ./vparser
4-
make -C ./dataflow
5-
make -C ./controlflow
6-
make -C ./ast_code_generator
3+
make -C ./pyverilog
74

85
.PHONY: clean
96
clean:
10-
make clean -C ./utils
11-
make clean -C ./vparser
12-
make clean -C ./dataflow
13-
make clean -C ./controlflow
14-
make clean -C ./ast_code_generator
15-
rm -rf *.pyc __pycache__ *.out parsetab.py *.html pyverilog.egg-info build dist
7+
make clean -C ./pyverilog
8+
rm -rf *.pyc __pycache__ pyverilog.egg-info build dist

pyverilog/Makefile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
.PHONY: all
2+
all:
3+
make -C ./vparser
4+
make -C ./dataflow
5+
make -C ./controlflow
6+
make -C ./ast_code_generator
7+
8+
.PHONY: clean
9+
clean:
10+
make clean -C ./utils
11+
make clean -C ./vparser
12+
make clean -C ./dataflow
13+
make clean -C ./controlflow
14+
make clean -C ./ast_code_generator
15+
rm -rf *.pyc __pycache__ *.out parsetab.py *.html
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)