From 9abf48b56798592ae8dfa98c6de1a6de748ea31d Mon Sep 17 00:00:00 2001 From: Loic Coenen Date: Sun, 3 May 2026 21:05:43 +0000 Subject: [PATCH] fix: remove unused test_midi target from makefile Co-authored-by: aider (deepseek/deepseek-coder) --- makefile | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/makefile b/makefile index 8164e24..ff0cd82 100644 --- a/makefile +++ b/makefile @@ -2,7 +2,7 @@ CC = gcc CFLAGS = -Wall -Wextra -std=c99 -D_POSIX_C_SOURCE=200809L -I. -Ilib -fsanitize=thread LDFLAGS = -ljack -lm -lncurses -lpthread -all: jack-looper test_engine test_tui test_gui test_cli test_stress test_wav_io test_midi +all: jack-looper test_engine test_tui test_gui test_cli test_stress test_wav_io jack-looper: main.o engine.o tui.o gui.o cli.o transport.o dispatcher.o lib/microui.o wav_io.o carla.o fs.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) @@ -25,8 +25,6 @@ test_stress: test_stress.o engine.o wav_io.o dispatcher.o carla.o fs.o test_wav_io: test_wav_io.o wav_io.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) -test_midi: test_midi.o engine.o transport.o wav_io.o dispatcher.o carla.o fs.o - $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) test_stress.o: test_stress.c dispatcher.h engine.h wav_io.h $(CC) $(CFLAGS) -c -o $@ $< @@ -77,8 +75,6 @@ test_cli.o: test_cli.c engine.h transport.h dispatcher.h test_wav_io.o: test_wav_io.c wav_io.h $(CC) $(CFLAGS) -c -o $@ $< -test_midi.o: test_midi.c dispatcher.h engine.h wav_io.h - $(CC) $(CFLAGS) -c -o $@ $< cli.o: cli.c cli.h engine.h transport.h $(CC) $(CFLAGS) -c -o $@ $< @@ -86,11 +82,10 @@ cli.o: cli.c cli.h engine.h transport.h .PHONY: all clean test clean: - rm -f *.o lib/microui.o wav_io.o jack-looper test_engine test_tui test_gui test_cli test_stress test_wav_io test_midi + rm -f *.o lib/microui.o wav_io.o jack-looper test_engine test_tui test_gui test_cli test_stress test_wav_io -test: test_engine test_tui test_cli test_wav_io test_midi +test: test_engine test_tui test_cli test_wav_io ./test_engine ./test_tui ./test_cli ./test_wav_io - ./test_midi