From 08d15b136acb7eb6294a1fb4327ec478f64371db Mon Sep 17 00:00:00 2001 From: Fabian Baumanis Date: Sun, 5 Jul 2020 21:02:10 +0200 Subject: [PATCH] Fix makefile in order to build successfully on Debian --- convert-utility/makefile | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/convert-utility/makefile b/convert-utility/makefile index 28d98d7..800c344 100644 --- a/convert-utility/makefile +++ b/convert-utility/makefile @@ -26,7 +26,18 @@ $(SRCDIR)/CAFFileALAC.cpp \ OBJS = \ main.o \ -CAFFileALAC.o +CAFFileALAC.o \ +$(CODECDIR)/ag_dec.o \ +$(CODECDIR)/ag_enc.o \ +$(CODECDIR)/ALACBitUtilities.o \ +$(CODECDIR)/ALACDecoder.o \ +$(CODECDIR)/ALACEncoder.o \ +$(CODECDIR)/dp_dec.o \ +$(CODECDIR)/dp_enc.o \ +$(CODECDIR)/EndianPortable.o \ +$(CODECDIR)/matrix_dec.o \ +$(CODECDIR)/matrix_enc.o + alacconvert: $(OBJS) (cd $(CODECDIR); $(MAKE)) @@ -40,8 +51,3 @@ CAFFileALAC.o : CAFFileALAC.cpp clean: -rm $(OBJS) alacconvert - - - - -