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

minimal-port
Damien George 2015-01-01 20:41:52 +00:00
parent 6d7e47087f
commit b36be5ff51
2 changed files with 5 additions and 12 deletions

View File

@ -8,7 +8,6 @@ include ../py/py.mk
INC = -I.
INC += -I..
INC += -I$(PY_SRC)
INC += -I$(BUILD)
# compiler settings

View File

@ -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);