diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2025-04-28 13:37:13 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2025-04-28 13:37:13 -0400 |
| commit | 093ffe93d0ab486229e36b2a97466ddd51e9fd0e (patch) | |
| tree | eef2a270868f020121790e5b4c61f342d97c6e9a /Makefile | |
| parent | 3d5fa4bf8f69cfd10fe849ba56d4c2321e6e598d (diff) | |
| download | volute-093ffe93d0ab486229e36b2a97466ddd51e9fd0e.zip | |
parallelize compressor filter with openmp
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ -CFLAGS = -std=c99 -I ./ -Wall -Wextra -pedantic -Wno-deprecated-declarations -D_XOPEN_SOURCE=700L -LDFLAGS = -lSDL2 -lSDL2_ttf -lm +CFLAGS = -std=c99 -I ./ -fopenmp -Wall -Wextra -pedantic -Wno-deprecated-declarations -D_XOPEN_SOURCE=700L +LDFLAGS = -lSDL2 -lSDL2_ttf -lm -fopenmp SRC = main.c microui.c renderer.c widget.c ui.c unit.c engine.c compressor.c eprintf.c cwalk.c toml.c util.c OBJ = ${SRC:.c=.o} |