Skip to content

Commit aa76da2

Browse files
committed
Revert "Merge pull request #22 from fukatani/master"
This reverts commit 167649e, reversing changes made to d0cb60a.
1 parent c8fc189 commit aa76da2

File tree

17 files changed

+213
-398
lines changed

17 files changed

+213
-398
lines changed

.travis.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
.PHONY: all
22
all:
3-
export PYTHON=python3
4-
export PYTHON27=python2.7
53
make -C ./pyverilog
64

75
.PHONY: clean

pyverilog/ast_code_generator/Makefile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
ifndef EXE_TRAVIS
2-
PYTHON=python3
3-
else
4-
PYTHON=python
5-
endif
1+
PYTHON=python3
62
#OPT=-m pdb
73
#OPT=-m cProfile -s time
84
#OPT=-m cProfile -o profile.rslt

pyverilog/controlflow/Makefile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
ifndef EXE_TRAVIS
2-
PYTHON=python3
3-
else
4-
PYTHON=python
5-
endif
61
PYTHON=python3
72
#PYTHON=python2.7
83
#OPT=-m pdb

pyverilog/dataflow/Makefile

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
ifndef EXE_TRAVIS
2-
PYTHON=python3
3-
else
4-
PYTHON=python
5-
endif
1+
PYTHON=python3
62
#PYTHON=python2.7
73
PYTHON27=python2.7
84
#OPT=-m pdb
@@ -46,18 +42,11 @@ subset:
4642

4743
.PHONY: codegen
4844
codegen:
49-
$(PYTHON) $(OPT) $(CODEGEN) $(SRCS) $(TOP) $(TARGETS) $(CODEGEN_OPT)
45+
$(PYTHON) $(OPT) $(CODEGEN) $(SRCS) $(TOP) $(TARGETS) $(CODEGEN_OPT)
5046

5147
.PHONY: graphgen
5248
graphgen:
53-
ifdef EXE_TRAVIS
54-
ifdef EXE_GRAPHGEN
55-
python --version
56-
$(PYTHON) $(OPT) $(GRAPHGEN) $(SRCS) $(TOP) $(TARGETS) $(GRAPHGEN_OPT)
57-
endif
58-
else
59-
$(PYTHON27) $(OPT) $(GRAPHGEN) $(SRCS) $(TOP) $(TARGETS) $(GRAPHGEN_OPT)
60-
endif
49+
$(PYTHON27) $(OPT) $(GRAPHGEN) $(SRCS) $(TOP) $(TARGETS) $(GRAPHGEN_OPT)
6150

6251
.PHONY: clean
6352
clean:

0 commit comments

Comments
 (0)