From: Matheus Afonso Martins Moreira Date: Tue, 10 Sep 2024 02:59:44 +0000 (-0300) Subject: make: add beeps face to build X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=673f90b7242d1f0cdf5b09a3aed473b6ae4d4cf0;p=sensor-watch.git 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 --- diff --git a/movement/make/Makefile b/movement/make/Makefile index 42c3106..e347d59 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.