2014-01-07 14:54:15 +00:00
|
|
|
# define main target
|
2014-01-20 00:02:39 +00:00
|
|
|
PROG = micropython
|
2014-01-07 14:54:15 +00:00
|
|
|
all: $(PROG)
|
|
|
|
|
2014-01-21 21:40:13 +00:00
|
|
|
# qstr definitions (must come before including py.mk)
|
|
|
|
QSTR_DEFS = qstrdefsport.h
|
|
|
|
|
2014-01-07 14:54:15 +00:00
|
|
|
# include py core make definitions
|
|
|
|
include ../py/py.mk
|
2013-10-12 14:30:21 +01:00
|
|
|
|
2014-01-07 14:54:15 +00:00
|
|
|
# program for deletion
|
|
|
|
RM = /bin/rm
|
2014-01-08 18:15:39 +00:00
|
|
|
ECHO = @echo
|
2014-01-07 14:54:15 +00:00
|
|
|
|
|
|
|
# compiler settings
|
2013-10-12 14:30:21 +01:00
|
|
|
CC = gcc
|
2014-01-15 22:58:39 +00:00
|
|
|
CFLAGS = -I. -I$(PY_SRC) -Wall -Werror -ansi -std=gnu99 -DUNIX
|
2014-01-02 15:50:33 +00:00
|
|
|
LDFLAGS = -lm
|
2013-10-12 14:30:21 +01:00
|
|
|
|
2014-01-13 13:25:10 +00:00
|
|
|
#Debugging/Optimization
|
|
|
|
ifdef DEBUG
|
|
|
|
CFLAGS += -Og -ggdb
|
|
|
|
else
|
|
|
|
CFLAGS += -Os #-DNDEBUG
|
|
|
|
endif
|
|
|
|
|
2014-01-07 14:54:15 +00:00
|
|
|
# source files
|
2013-10-12 14:30:21 +01:00
|
|
|
SRC_C = \
|
|
|
|
main.c \
|
2014-01-08 00:52:20 +00:00
|
|
|
file.c \
|
2014-01-18 21:47:44 +00:00
|
|
|
socket.c \
|
2013-10-12 14:30:21 +01:00
|
|
|
|
2014-01-21 21:40:13 +00:00
|
|
|
OBJ = $(PY_O) $(addprefix $(BUILD)/, $(SRC_C:.c=.o))
|
2013-10-18 19:58:12 +01:00
|
|
|
LIB = -lreadline
|
2014-01-02 15:50:33 +00:00
|
|
|
# the following is needed for BSD
|
|
|
|
#LIB += -ltermcap
|
2013-10-12 14:30:21 +01:00
|
|
|
|
|
|
|
$(PROG): $(BUILD) $(OBJ)
|
2014-01-08 18:15:39 +00:00
|
|
|
$(ECHO) "LINK $<"
|
|
|
|
$(Q)$(CC) -o $@ $(OBJ) $(LIB) $(LDFLAGS)
|
2014-01-13 13:25:10 +00:00
|
|
|
ifndef DEBUG
|
2014-01-08 18:15:39 +00:00
|
|
|
$(Q)strip $(PROG)
|
2014-01-13 13:25:10 +00:00
|
|
|
endif
|
2014-01-08 18:15:39 +00:00
|
|
|
$(Q)size $(PROG)
|
2013-10-12 14:30:21 +01:00
|
|
|
|
2014-01-21 21:40:13 +00:00
|
|
|
$(BUILD)/%.o: %.c $(QSTR_DEFS)
|
2014-01-08 18:15:39 +00:00
|
|
|
$(ECHO) "CC $<"
|
|
|
|
$(Q)$(CC) $(CFLAGS) -c -o $@ $<
|
2013-10-12 14:30:21 +01:00
|
|
|
|
2014-01-03 15:15:53 +00:00
|
|
|
$(BUILD)/main.o: mpconfigport.h
|
2013-10-12 14:30:21 +01:00
|
|
|
|
|
|
|
clean:
|
2014-01-07 14:54:15 +00:00
|
|
|
$(RM) -f $(PROG)
|
|
|
|
$(RM) -rf $(BUILD)
|
2013-12-29 18:01:01 +00:00
|
|
|
|
2014-01-07 14:54:15 +00:00
|
|
|
.PHONY: all clean
|