Skip to content

Commit 2f32c9c

Browse files
committed
Minor update for Makefile and .travis.yml
1 parent c483cd7 commit 2f32c9c

File tree

5 files changed

+6
-9
lines changed

5 files changed

+6
-9
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,4 @@ before_install:
1212
before_script:
1313
- pip freeze
1414
script:
15-
# - export EXE_TRAVIS=1
16-
- make
15+
- make

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
all:
33
export PYTHON=python3
44
export PYTHON27=python2.7
5-
make -C ./pyverilog
5+
make -C ./tests
66

77
.PHONY: clean
88
clean:

pyverilog/controlflow/Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ ifndef EXE_TRAVIS
33
else
44
PYTHON=python
55
endif
6-
PYTHON=python3
7-
#PYTHON=python2.7
6+
87
#OPT=-m pdb
98
#OPT=-m cProfile -s time
109
#OPT=-m cProfile -o profile.rslt

pyverilog/dataflow/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ifndef EXE_TRAVIS
33
else
44
PYTHON=python
55
endif
6-
#PYTHON=python2.7
6+
77
PYTHON27=python2.7
88
#OPT=-m pdb
99
#OPT=-m cProfile -s time

tests/ast_code_generator_test/Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
TEST=*.py
22
ARGS=
3-
if [ -z "${PYTHON}" ];then
4-
PYTHON=python3
5-
fi
3+
4+
PYTHON=python3
65
#PYTHON=python
76
#OPT=-m pdb
87
#OPT=-m cProfile -s time

0 commit comments

Comments
 (0)