Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
8fcf7b85
Commit
8fcf7b85
authored
Jan 25, 2014
by
Damien George
Browse files
Merge pull request #225 from dhylands/fix-make-dep
Fixed dependency problem for qstrdefs.generated.h
parents
51f3a6be
1a3b0d5f
Changes
2
Hide whitespace changes
Inline
Side-by-side
py/mkrules.mk
View file @
8fcf7b85
...
...
@@ -65,7 +65,7 @@ ifneq ($(PROG),)
all
:
$(PROG)
$(PROG)
:
$(OBJ)
$(ECHO)
"LINK
$
<
"
$(ECHO)
"LINK
$
@
"
$(Q)$(CC)
-o
$@
$(OBJ)
$(LIB)
$(LDFLAGS)
ifndef
DEBUG
$(Q)
strip
$(PROG)
...
...
py/py.mk
View file @
8fcf7b85
...
...
@@ -78,7 +78,7 @@ PY_O = $(addprefix $(PY_BUILD)/, $(PY_O_BASENAME))
# Adding an order only dependency on $(PY_BUILD) causes $(PY_BUILD) to get
# created before we run the script to generate the .h
$(PY_BUILD)/qstrdefs.generated.h
:
| $(PY_BUILD)
$(PY_BUILD)/qstrdefs.generated.h
:
| $(PY_BUILD)
/
$(PY_BUILD)/qstrdefs.generated.h
:
$(PY_QSTR_DEFS) $(QSTR_DEFS) $(PY_SRC)/makeqstrdata.py
$(ECHO)
"makeqstrdata
$(PY_QSTR_DEFS)
$(QSTR_DEFS)
"
$(Q)
python
$(PY_SRC)
/makeqstrdata.py
$(PY_QSTR_DEFS)
$(QSTR_DEFS)
>
$@
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment