Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
bwhitman committed May 25, 2024
1 parent 9bf6286 commit 523ff0c
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion tulip/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ linux - all Tulip Desktop for Linux specific files
macos - all Tulip Desktop for macOS specific files
shared - code shared between all Tulip ports (hardware & Desktop)
shared/py - Python modules that get loaded into Tulip
shared_desktop - code shared between Tulip Desktop ports (macOS, iOS, Linux)
shared/desktop - code shared between Tulip Desktop ports (macOS, iOS, Linux)
```


10 changes: 5 additions & 5 deletions tulip/ios/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ include $(TOP)/extmod/extmod.mk
INC += -I.
INC += -I$(TOP)
INC += -I$(BUILD)
INC += -I../shared_desktop/
INC += -I../shared/desktop/
INC += -I$(TOP)/ports/unix
INC += -I../shared/
INC += -I../../amy/src/
Expand Down Expand Up @@ -189,10 +189,10 @@ endif
# source files
SRC_C += \
main.c \
../shared_desktop/unix_mphal.c \
../shared_desktop/unix_display.c \
../shared_desktop/multicast.c \
../shared_desktop/mpthreadport.c \
../shared/desktop/unix_mphal.c \
../shared/desktop/unix_display.c \
../shared/desktop/multicast.c \
../shared/desktop/mpthreadport.c \
$(MICROPY_PORT_DIR)/gccollect.c \
$(MICROPY_PORT_DIR)/input.c \
$(MICROPY_PORT_DIR)/modmachine.c \
Expand Down
12 changes: 6 additions & 6 deletions tulip/linux/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ TOP = ../../micropython
VARIANT_DIR ?= ../../micropython/ports/unix/variants/$(VARIANT)

include $(TOP)/py/mkenv.mk
include ../shared_desktop/mpconfigport.mk
include ../shared/desktop/mpconfigport.mk
include $(VARIANT_DIR)/mpconfigvariant.mk

# Use the default frozen manifest, variants may override this.
Expand All @@ -35,7 +35,7 @@ include $(TOP)/extmod/extmod.mk
INC += -I.
INC += -I$(TOP)
INC += -I$(BUILD)
INC += -I../shared_desktop/
INC += -I../shared/desktop/
INC += -I$(TOP)/ports/unix
INC += -I../shared/
INC += -I../../amy/src/
Expand Down Expand Up @@ -170,10 +170,10 @@ endif
# source files
SRC_C += \
main.c \
../shared_desktop/unix_mphal.c \
../shared_desktop/unix_display.c \
../shared_desktop/multicast.c \
../shared_desktop/mpthreadport.c \
../shared/desktop/unix_mphal.c \
../shared/desktop/unix_display.c \
../shared/desktop/multicast.c \
../shared/desktop/mpthreadport.c \
../../amy/src/libminiaudio-audio.c \
$(MICROPY_PORT_DIR)/gccollect.c \
$(MICROPY_PORT_DIR)/input.c \
Expand Down
12 changes: 6 additions & 6 deletions tulip/macos/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ TOP = ../../micropython
VARIANT_DIR ?= ../../micropython/ports/unix/variants/$(VARIANT)

include $(TOP)/py/mkenv.mk
include ../shared_desktop/mpconfigport.mk
include ../shared/desktop/mpconfigport.mk
include $(VARIANT_DIR)/mpconfigvariant.mk

# Use the default frozen manifest, variants may override this.
Expand Down Expand Up @@ -78,7 +78,7 @@ $(LVGL_MPY): $(ALL_LVGL_SRC) $(LVGL_BINDING_DIR)/gen/gen_mpy.py
INC += -I.
INC += -I$(TOP)
INC += -I$(BUILD)
INC += -I../shared_desktop/
INC += -I../shared/desktop/
INC += -I$(TOP)/ports/unix
INC += -I../shared/
INC += -I../../amy/src/
Expand Down Expand Up @@ -233,10 +233,10 @@ endif
# source files
SRC_C += \
main.c \
../shared_desktop/unix_mphal.c \
../shared_desktop/unix_display.c \
../shared_desktop/multicast.c \
../shared_desktop/mpthreadport.c \
../shared/desktop/unix_mphal.c \
../shared/desktop/unix_display.c \
../shared/desktop/multicast.c \
../shared/desktop/mpthreadport.c \
../../amy/src/libminiaudio-audio.c \
$(MICROPY_PORT_DIR)/gccollect.c \
$(MICROPY_PORT_DIR)/input.c \
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 523ff0c

Please sign in to comment.