shithub: opus

Download patch

ref: cc7a9ed7b4f6a246570e4f02a9a847e14db9e21e
parent: 4b78e59bb33c49786724d1db50cafe75a6f0dae0
author: Ralph Giles <giles@thaumas.net>
date: Thu Apr 17 09:55:58 EDT 2025

Fix clean target in the makefile builds

Restore a continuation backslash removed in
4b9c620a8dbee1c2d164310ac8ace44fff97b162.

This makes `make -f Makefile.unix clean` complete without error.

--- a/Makefile.mips
+++ b/Makefile.mips
@@ -161,7 +161,7 @@
 	rm -f opus_demo$(EXESUFFIX) opus_compare$(EXESUFFIX) $(TARGET) \
                 test_opus_api$(EXESUFFIX) test_opus_decode$(EXESUFFIX) \
                 test_opus_encode$(EXESUFFIX) test_opus_extensions$(EXESUFFIX) \
-                test_opus_padding$(EXESUFFIX)
+                test_opus_padding$(EXESUFFIX) \
 		$(OBJS) $(OPUSDEMO_OBJS) $(OPUSCOMPARE_OBJS) $(TESTOPUSAPI_OBJS) \
                 $(TESTOPUSDECODE_OBJS) $(TESTOPUSENCODE_OBJS) \
                 $(TESTOPUSEXTENSIONS_OBJS) $(TESTOPUSPADDING_OBJS)
--- a/Makefile.unix
+++ b/Makefile.unix
@@ -159,7 +159,7 @@
 	rm -f opus_demo$(EXESUFFIX) opus_compare$(EXESUFFIX) $(TARGET) \
                 test_opus_api$(EXESUFFIX) test_opus_decode$(EXESUFFIX) \
                 test_opus_encode$(EXESUFFIX) test_opus_extensions$(EXESUFFIX) \
-                test_opus_padding$(EXESUFFIX)
+                test_opus_padding$(EXESUFFIX) \
 		$(OBJS) $(OPUSDEMO_OBJS) $(OPUSCOMPARE_OBJS) $(TESTOPUSAPI_OBJS) \
                 $(TESTOPUSDECODE_OBJS) $(TESTOPUSENCODE_OBJS) \
                 $(TESTOPUSEXTENSIONS_OBJS) $(TESTOPUSPADDING_OBJS)
--