Skip to content

Commit a6cd979

Browse files
committed
base.mk and base-libpycoram.mk are updated.
1 parent 018aec2 commit a6cd979

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

base-libpycoram.mk

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@ PYTHON=python3
44
#OPT=-m cProfile -s time
55
#OPT=-m cProfile -o profile.rslt
66

7-
## If you installed pycoram in your environment
8-
#TARGET=pycoram
9-
## If you directly execute pycoram.py without installation
10-
TARGET=$(ROOTDIR)/pycoram/pycoram.py
11-
127
################################################################################
138
IPVER=v1_00_a
149
OUTPUTDIR=pycoram_$(TOPMODULE)_$(IPVER)

base.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ PYTHON=python3
77
## If you installed pycoram in your environment
88
#TARGET=pycoram
99
## If you directly execute run_pycoram.py without installation
10-
TARGET=$(ROOTDIR)/pycoram/run_pycoram.py
10+
TARGET=$(PYTHON) $(OPT) $(ROOTDIR)/pycoram/run_pycoram.py
1111

1212
################################################################################
1313
IPVER=v1_00_a
@@ -22,7 +22,7 @@ all: sim
2222

2323
.PHONY: build
2424
build:
25-
$(PYTHON) $(OPT) $(TARGET) $(ARGS) $(INPUT)
25+
$(TARGET) $(ARGS) $(INPUT)
2626

2727
.PHONY: sim
2828
sim:

0 commit comments

Comments
 (0)