diff --git a/makefile b/makefile index 660dec2..5182044 100644 --- a/makefile +++ b/makefile @@ -5,6 +5,10 @@ LDFLAGS ?= -ljack looper: src/main.c $(CC) $(CFLAGS) -o looper src/main.c $(LDFLAGS) -.PHONY: clean +integration: looper tests/integration.c + $(CC) $(CFLAGS) -o integration_test tests/integration.c + ./integration_test + +.PHONY: clean integration clean: - rm -f looper + rm -f looper integration_test