diff options
author | Andrew Scheller <github@loowis.durge.org> | 2014-04-16 22:10:33 +0100 |
---|---|---|
committer | Andrew Scheller <github@loowis.durge.org> | 2014-04-16 22:16:28 +0100 |
commit | 70a7d7a94397cbe01fd5457e34f3d3368300f2ac (patch) | |
tree | 50ffda62cc15f607d543e76aaf0c23a614dd5618 /unix-cpy | |
parent | a1c67206c88fe0c0712c99d6181cff9b99b07b33 (diff) | |
download | micropython-70a7d7a94397cbe01fd5457e34f3d3368300f2ac.tar.gz micropython-70a7d7a94397cbe01fd5457e34f3d3368300f2ac.zip |
build directory can now be renamed
The autogenerated header files have been moved about, and an extra
include dir has been added, which means you can give a custom
BUILD=newbuilddir option to make, and everything "just works"
Also tidied up the way the different Makefiles build their include-
directory flags
Diffstat (limited to 'unix-cpy')
-rw-r--r-- | unix-cpy/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/unix-cpy/Makefile b/unix-cpy/Makefile index 985ef15854..8db8c2069a 100644 --- a/unix-cpy/Makefile +++ b/unix-cpy/Makefile @@ -6,8 +6,12 @@ PROG = cpy # include py core make definitions include ../py/py.mk +INC = -I. +INC += -I$(PY_SRC) +INC += -I$(BUILD)/includes + # compiler settings -CFLAGS = -I. -I$(PY_SRC) -Wall -Werror -ansi -std=gnu99 -DUNIX +CFLAGS = $(INC) -Wall -Werror -ansi -std=gnu99 -DUNIX LDFLAGS = -lm # Debugging/Optimization |