Files
looper/makefile
Loic Coenen 6d7dd3769b feat: add integration test target to Makefile
Co-authored-by: aider (deepseek/deepseek-reasoner) <aider@aider.chat>
2026-05-07 20:36:25 +00:00

15 lines
307 B
Makefile

CC ?= gcc
CFLAGS ?= -Wall -Wextra -g
LDFLAGS ?= -ljack
looper: src/main.c
$(CC) $(CFLAGS) -o looper src/main.c $(LDFLAGS)
integration: looper tests/integration.c
$(CC) $(CFLAGS) -o integration_test tests/integration.c
./integration_test
.PHONY: clean integration
clean:
rm -f looper integration_test