diff options
author | Damien George <damien.p.george@gmail.com> | 2017-01-24 20:54:08 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-01-27 13:19:10 +1100 |
commit | d4464b005093ffbc0f5ff8ec736927a46e7926ca (patch) | |
tree | e6afb39a07fb9e034abfb8d184db597eeffa2e25 | |
parent | 9b08faf3ae98e5176a041072a6b6f24044ea473c (diff) | |
download | micropython-d4464b005093ffbc0f5ff8ec736927a46e7926ca.tar.gz micropython-d4464b005093ffbc0f5ff8ec736927a46e7926ca.zip |
py/py.mk: Add CFLAGS_MOD flag to set config file for FatFs.
-rw-r--r-- | py/py.mk | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -19,6 +19,9 @@ CSUPEROPT = -O3 INC += -I../lib INC += -I../lib/netutils +# this sets the config file for FatFs +CFLAGS_MOD += -DFFCONF_H=\"lib/oofatfs/ffconf.h\" + ifeq ($(MICROPY_PY_USSL),1) CFLAGS_MOD += -DMICROPY_PY_USSL=1 ifeq ($(MICROPY_SSL_AXTLS),1) |