The executable now lives in the build directory, and since the build directory already contains the variant name there is no need to also add it to the executable. Signed-off-by: Damien George <damien@micropython.org>
19 lines
322 B
Makefile
19 lines
322 B
Makefile
CC = i586-pc-msdosdjgpp-gcc
|
|
|
|
STRIP = i586-pc-msdosdjgpp-strip
|
|
|
|
SIZE = i586-pc-msdosdjgpp-size
|
|
|
|
CFLAGS += \
|
|
-DMICROPY_NLR_SETJMP \
|
|
-Dtgamma=gamma \
|
|
-DMICROPY_EMIT_X86=0 \
|
|
-DMICROPY_NO_ALLOCA=1 \
|
|
|
|
MICROPY_PY_SOCKET = 0
|
|
MICROPY_PY_FFI = 0
|
|
MICROPY_PY_JNI = 0
|
|
MICROPY_PY_BTREE = 0
|
|
MICROPY_PY_THREAD = 0
|
|
MICROPY_PY_USSL = 0
|