Skip to content

Commit cc7a9ed

Browse files
committed
Fix clean target in the makefile builds
Restore a continuation backslash removed in 4b9c620. This makes `make -f Makefile.unix clean` complete without error.
1 parent 4b78e59 commit cc7a9ed

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile.mips

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ clean:
161161
rm -f opus_demo$(EXESUFFIX) opus_compare$(EXESUFFIX) $(TARGET) \
162162
test_opus_api$(EXESUFFIX) test_opus_decode$(EXESUFFIX) \
163163
test_opus_encode$(EXESUFFIX) test_opus_extensions$(EXESUFFIX) \
164-
test_opus_padding$(EXESUFFIX)
164+
test_opus_padding$(EXESUFFIX) \
165165
$(OBJS) $(OPUSDEMO_OBJS) $(OPUSCOMPARE_OBJS) $(TESTOPUSAPI_OBJS) \
166166
$(TESTOPUSDECODE_OBJS) $(TESTOPUSENCODE_OBJS) \
167167
$(TESTOPUSEXTENSIONS_OBJS) $(TESTOPUSPADDING_OBJS)

Makefile.unix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ clean:
159159
rm -f opus_demo$(EXESUFFIX) opus_compare$(EXESUFFIX) $(TARGET) \
160160
test_opus_api$(EXESUFFIX) test_opus_decode$(EXESUFFIX) \
161161
test_opus_encode$(EXESUFFIX) test_opus_extensions$(EXESUFFIX) \
162-
test_opus_padding$(EXESUFFIX)
162+
test_opus_padding$(EXESUFFIX) \
163163
$(OBJS) $(OPUSDEMO_OBJS) $(OPUSCOMPARE_OBJS) $(TESTOPUSAPI_OBJS) \
164164
$(TESTOPUSDECODE_OBJS) $(TESTOPUSENCODE_OBJS) \
165165
$(TESTOPUSEXTENSIONS_OBJS) $(TESTOPUSPADDING_OBJS)

0 commit comments

Comments
 (0)