aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2025-04-24 18:37:11 -0400
committerSam Anthony <sam@samanthony.xyz>2025-04-24 18:37:11 -0400
commit072f0c594526d96dac1c181d057eb9cf5d16862d (patch)
treef085f52fdbbced413f9e510e3ca4174a84be251f /Makefile
parent48bc192d262416e9466922c4b65b066ee6027d9a (diff)
downloadvolute-072f0c594526d96dac1c181d057eb9cf5d16862d.zip
eprintf
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5fe4011..d9eb3a9 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,9 @@
CFLAGS = -std=c99 -Wall -Wextra -pedantic -Wno-deprecated-declarations -D_XOPEN_SOURCE=700L
LDFLAGS = -lSDL2 -lSDL2_ttf -lm
-SRC = main.c microui.c renderer.c widget.c ui.c unit.c engine.c compressor.c
+SRC = main.c microui.c renderer.c widget.c ui.c unit.c engine.c compressor.c eprintf.c
OBJ = ${SRC:.c=.o}
-HDR = microui.h renderer.h widget.h ui.h unit.h engine.h
+HDR = microui.h renderer.h widget.h ui.h unit.h engine.h eprintf.h util.h
TEST_SRC = test.c test_angular_speed.c test_fraction.c test_pressure.c test_temperature.c test_volume.c test_volume_flow_rate.c test_mass_flow_rate.c test_engine.c unit.c engine.c
TEST_OBJ = ${TEST_SRC:.c=.o}