fix: remove unused test_midi target from makefile
Co-authored-by: aider (deepseek/deepseek-coder) <aider@aider.chat>
This commit is contained in:
11
makefile
11
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
|
||||
|
||||
Reference in New Issue
Block a user