summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorstijn <stinos@zoho.com>2015-11-20 15:26:33 +0100
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2015-11-24 17:34:14 +0200
commita58fa27c2409c393bd7df5c58e63eec2730c4f68 (patch)
tree5b087409eb78a708d93d631771d6bc853ac9cc66
parentbf1570cb2559ba12ca86b2dbb26be665300ffe5e (diff)
downloadmicropython-a58fa27c2409c393bd7df5c58e63eec2730c4f68.tar.gz
micropython-a58fa27c2409c393bd7df5c58e63eec2730c4f68.zip
windows: Cleanup makefile
The BSD stuff is a copy from the unix makefile but at least there it makes some sense, a windows makefile on BSD doesn't. The -lmman flag is probably for mmap functions but there is no other build support for it on windows so just that flag won't cut it anyway.
-rw-r--r--windows/Makefile4
1 files changed, 0 insertions, 4 deletions
diff --git a/windows/Makefile b/windows/Makefile
index d791735596..ca3c08c1fb 100644
--- a/windows/Makefile
+++ b/windows/Makefile
@@ -47,12 +47,8 @@ SRC_C += lib/mp-readline/readline.c
else ifeq ($(MICROPY_USE_READLINE),2)
CFLAGS_MOD += -DMICROPY_USE_READLINE=2
LDFLAGS_MOD += -lreadline
-# the following is needed for BSD
-#LDFLAGS_MOD += -ltermcap
endif
LIB += -lws2_32
-#LIB += -lmman
include ../py/mkrules.mk
-