diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2025-04-25 20:57:51 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2025-04-25 20:57:51 -0400 |
| commit | 1052452235cf0f4c77f0b9bd35830d1409a0652d (patch) | |
| tree | fdd3b558ef6f13f0a7a2f165f804317a66f1355e /Makefile | |
| parent | 8ca3464471a78c5d9639eb0588ee31004a46cc0d (diff) | |
| download | volute-1052452235cf0f4c77f0b9bd35830d1409a0652d.zip | |
toml library
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,9 +1,9 @@ -CFLAGS = -std=c99 -Wall -Wextra -pedantic -Wno-deprecated-declarations -D_XOPEN_SOURCE=700L +CFLAGS = -std=c99 -I ./ -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 eprintf.c +SRC = main.c microui.c renderer.c widget.c ui.c unit.c engine.c compressor.c eprintf.c cwalk.c toml.c OBJ = ${SRC:.c=.o} -HDR = microui.h renderer.h widget.h ui.h unit.h engine.h eprintf.h util.h +HDR = microui.h renderer.h widget.h ui.h unit.h engine.h eprintf.h util.h cwalk.h toml.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} |