diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2025-03-01 20:30:23 -0500 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2025-03-01 20:30:23 -0500 |
| commit | f03653774e4529404546f474064c5bf679fa7176 (patch) | |
| tree | b881365d1b43d9a16fae1530bef98acab52d55bb /Makefile | |
| parent | f7970f9b769369220ed3c607a27081b8ea93e409 (diff) | |
| download | volute-f03653774e4529404546f474064c5bf679fa7176.zip | |
add compressor outlet temperature output
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,11 +1,11 @@ CFLAGS = -std=c99 -Wall -Wextra -pedantic -Wno-deprecated-declarations -D_XOPEN_SOURCE=700L -LDFLAGS = -lSDL2 -lSDL2_ttf +LDFLAGS = -lSDL2 -lSDL2_ttf -lm SRC = main.c microui.c renderer.c widget.c ui.c unit.c engine.c OBJ = ${SRC:.c=.o} HDR = microui.h renderer.h widget.h ui.h unit.h engine.h -TEST_SRC = test.c test_angular_speed.c test_pressure.c test_temperature.c test_volume.c test_volume_flow_rate.c test_fraction.c unit.c +TEST_SRC = test.c test_angular_speed.c test_pressure.c test_temperature.c test_volume.c test_volume_flow_rate.c test_fraction.c test_engine.c unit.c engine.c TEST_OBJ = ${TEST_SRC:.c=.o} volute: ${OBJ} |