Add touch-screen rotation support, binary versions for MicroPython 1.24, and recipe to make themImproved clock/time and file date handling
parent
36fe87e28b
commit
4a1a9e8669
@ -0,0 +1,19 @@
|
||||
# Define variables
|
||||
MPY_CROSS = ../micropython/mpy-cross/build/mpy-cross
|
||||
|
||||
SRC_DIR = .
|
||||
OUT_DIR = .
|
||||
SRC = $(wildcard $(SRC_DIR)/*.py)
|
||||
OUT = $(patsubst $(SRC_DIR)/%.py, $(OUT_DIR)/%.mpy, $(SRC))
|
||||
|
||||
# Default target
|
||||
# all: $(OUT) $(OUT_DIR)/sh.txt
|
||||
all: $(OUT)
|
||||
|
||||
# Rule to create .mpy from .py
|
||||
$(OUT_DIR)/%.mpy: $(SRC_DIR)/%.py
|
||||
$(MPY_CROSS) $< -o $@
|
||||
|
||||
# Phony targets
|
||||
.PHONY: all
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue