diff options
author | Joey Castillo <jose.castillo@gmail.com> | 2021-10-16 13:14:52 -0400 |
---|---|---|
committer | Joey Castillo <jose.castillo@gmail.com> | 2021-10-16 13:14:52 -0400 |
commit | d5ac4cb71b4e328a27e26843cfdc6719b152ac7d (patch) | |
tree | 5e6d916c6848c912ae8cbc4d2ff799728103d6a7 /movement/make | |
parent | e8461984d60a80841a5f4b219358cc20567114f8 (diff) | |
download | Sensor-Watch-d5ac4cb71b4e328a27e26843cfdc6719b152ac7d.tar.gz Sensor-Watch-d5ac4cb71b4e328a27e26843cfdc6719b152ac7d.tar.bz2 Sensor-Watch-d5ac4cb71b4e328a27e26843cfdc6719b152ac7d.zip |
widgets are now watch faces
Diffstat (limited to 'movement/make')
-rwxr-xr-x | movement/make/Makefile | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/movement/make/Makefile b/movement/make/Makefile index 35b80079..8b29fba4 100755 --- a/movement/make/Makefile +++ b/movement/make/Makefile @@ -7,26 +7,26 @@ include $(TOP)/make.mk # INCLUDES += \ # -I../ \ # -I../drivers/ \ -# -I../widgets/fitness/ +# -I../watch_faces/fitness/ INCLUDES += \ -I../ \ - -I../widgets/ \ - -I../widgets/clock/ \ - -I../widgets/settings/ \ - -I../widgets/complications/ \ + -I../watch_faces/ \ + -I../watch_faces/clock/ \ + -I../watch_faces/settings/ \ + -I../watch_faces/complications/ \ # If you add any other source files you wish to compile, add them after ../app.c # Note that you will need to add a backslash at the end of any line you wish to continue, i.e. # SRCS += \ # ../movement.c \ # ../drivers/lis2dh.c \ -# ../widgets/fitness/step_count_widget.c +# ../watch_faces/fitness/step_count_face.c SRCS += \ ../movement.c \ - ../widgets/clock/simple_clock_widget.c \ - ../widgets/settings/preferences_widget.c \ - ../widgets/settings/set_time_widget.c \ - ../widgets/complications/pulseometer_widget.c \ + ../watch_faces/clock/simple_clock_face.c \ + ../watch_faces/settings/preferences_face.c \ + ../watch_faces/settings/set_time_face.c \ + ../watch_faces/complications/pulseometer_face.c \ # Leave this line at the bottom of the file; it has all the targets for making your project. include $(TOP)/rules.mk |