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
b36be5ff
Commit
b36be5ff
authored
Jan 01, 2015
by
Damien George
Browse files
unix-cpy: Prefix includes with py/; remove need for -I../py.
parent
6d7e4708
Changes
2
Hide whitespace changes
Inline
Side-by-side
unix-cpy/Makefile
View file @
b36be5ff
...
...
@@ -8,7 +8,6 @@ include ../py/py.mk
INC
=
-I
.
INC
+=
-I
..
INC
+=
-I
$(PY_SRC)
INC
+=
-I
$(BUILD)
# compiler settings
...
...
unix-cpy/main.c
View file @
b36be5ff
...
...
@@ -29,17 +29,11 @@
#include
<stdio.h>
#include
<string.h>
#include
"mpconfig.h"
#include
"nlr.h"
#include
"misc.h"
#include
"qstr.h"
#include
"lexer.h"
#include
"parse.h"
#include
"obj.h"
#include
"parsehelper.h"
#include
"compile.h"
#include
"runtime.h"
#include
"pfenv.h"
#include
"py/nlr.h"
#include
"py/parsehelper.h"
#include
"py/compile.h"
#include
"py/runtime.h"
#include
"py/pfenv.h"
void
do_file
(
const
char
*
file
)
{
mp_lexer_t
*
lex
=
mp_lexer_new_from_file
(
file
);
...
...
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