Skip to content
Snippets Groups Projects
Commit b36be5ff authored by Damien George's avatar Damien George
Browse files

unix-cpy: Prefix includes with py/; remove need for -I../py.

parent 6d7e4708
Branches
No related tags found
No related merge requests found
...@@ -8,7 +8,6 @@ include ../py/py.mk ...@@ -8,7 +8,6 @@ include ../py/py.mk
INC = -I. INC = -I.
INC += -I.. INC += -I..
INC += -I$(PY_SRC)
INC += -I$(BUILD) INC += -I$(BUILD)
# compiler settings # compiler settings
......
...@@ -29,17 +29,11 @@ ...@@ -29,17 +29,11 @@
#include <stdio.h> #include <stdio.h>
#include <string.h> #include <string.h>
#include "mpconfig.h" #include "py/nlr.h"
#include "nlr.h" #include "py/parsehelper.h"
#include "misc.h" #include "py/compile.h"
#include "qstr.h" #include "py/runtime.h"
#include "lexer.h" #include "py/pfenv.h"
#include "parse.h"
#include "obj.h"
#include "parsehelper.h"
#include "compile.h"
#include "runtime.h"
#include "pfenv.h"
void do_file(const char *file) { void do_file(const char *file) {
mp_lexer_t *lex = mp_lexer_new_from_file(file); mp_lexer_t *lex = mp_lexer_new_from_file(file);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment