Skip to content

Commit c8fc189

Browse files
committed
Revert "Minor update for Makefile and .travis.yml"
This reverts commit 2f32c9c.
1 parent 2f32c9c commit c8fc189

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ before_install:
1212
before_script:
1313
- pip freeze
1414
script:
15-
- make
15+
# - export EXE_TRAVIS=1
16+
- 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 ./tests
5+
make -C ./pyverilog
66

77
.PHONY: clean
88
clean:

pyverilog/controlflow/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ ifndef EXE_TRAVIS
33
else
44
PYTHON=python
55
endif
6-
6+
PYTHON=python3
7+
#PYTHON=python2.7
78
#OPT=-m pdb
89
#OPT=-m cProfile -s time
910
#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-
6+
#PYTHON=python2.7
77
PYTHON27=python2.7
88
#OPT=-m pdb
99
#OPT=-m cProfile -s time

tests/ast_code_generator_test/Makefile

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

0 commit comments

Comments
 (0)