Skip to content

Commit cd6b60d

Browse files
committed
Makefiles are updated for the location modification of testcode
1 parent bb1579f commit cd6b60d

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

pyverilog/ast_code_generator/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ PYTHON=python3
44
#OPT=-m cProfile -o profile.rslt
55

66
CODEGEN=codegen.py
7-
SRCS=../testcode/test.v
7+
SRCS=../../testcode/led.v
88

99
.PHONY: codegen
1010
codegen:

pyverilog/controlflow/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ANALYZER=controlflow_analyzer.py
88
ACTIVE=active_analyzer.py
99
ACTIVERANGE=active_range.py
1010

11-
SRCS=../testcode/vectoradd.v
11+
SRCS=../../testcode/vectoradd.v
1212
TOP=-t TOP
1313
TARGETS=-s "TOP.MEM_A"
1414

pyverilog/dataflow/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ SUBSET=subset.py
1212
CODEGEN=codegen.py
1313
GRAPHGEN=graphgen.py
1414

15-
SRCS=../testcode/generate.v
15+
SRCS=../../testcode/generate.v
1616
TOP=-t TOP
1717
TARGETS=-s "TOP.OUT4"
1818

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from setuptools import setup, find_packages
1+
ppfrom setuptools import setup, find_packages
22

33
import pyverilog.utils.version
44
import re
@@ -20,7 +20,5 @@ def read(filename):
2020
license="Apache License 2.0",
2121
url='http://shtaxxx.github.io/Pyverilog/',
2222
packages=find_packages(),
23-
package_data={ 'pyverilog.ast_code_generator' : ['template/*'],
24-
'pyverilog' : ['testcode/*'], },
23+
package_data={ 'pyverilog.ast_code_generator' : ['template/*'], },
2524
)
26-

0 commit comments

Comments
 (0)