From 88155a672594488ef8f7d2f5fc91c608f9f066b3 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Fri, 13 Mar 2015 00:36:23 +0100 Subject: [PATCH] Add a missing .o to OBJS. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a3cf95f..28ab7bc 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ all: synth decode sync cleaner %.o: %.cpp $(CXX) -MMD -MP $(CPPFLAGS) $(CXXFLAGS) -o $@ -c $< -OBJS=decode.o synth.o synth_main.o interpolate.o sync.o level.o filter.o +OBJS=audioreader.o decode.o synth.o synth_main.o interpolate.o sync.o level.o filter.o DEPS=$(OBJS:.o=.d) -include $(DEPS) -- 2.39.2