From 673f90b7242d1f0cdf5b09a3aed473b6ae4d4cf0 Mon Sep 17 00:00:00 2001 From: Matheus Afonso Martins Moreira Date: Mon, 9 Sep 2024 23:59:44 -0300 Subject: [PATCH] make: add beeps face to build PR #386 did not add the C file to the makefile, causing the build to fail at the link stage due to the missing object file and the symbols that were supposed to be provided by it. Adding the file to the build fixes #472. Reported-by: CarpeNoctem Fixed-by: CarpeNoctem Reviewed-by: Matheus Afonso Martins Moreira GitHub-Issue: https://github.com/joeycastillo/Sensor-Watch/issues/472 --- movement/make/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/movement/make/Makefile b/movement/make/Makefile index 42c3106e3..e347d5957 100644 --- a/movement/make/Makefile +++ b/movement/make/Makefile @@ -140,6 +140,7 @@ SRCS += \ ../watch_faces/complication/simon_face.c \ ../watch_faces/complication/simple_calculator_face.c \ ../watch_faces/sensor/alarm_thermometer_face.c \ + ../watch_faces/demo/beeps_face.c \ # New watch faces go above this line. # Leave this line at the bottom of the file; it has all the targets for making your project.