Makefile: fix test files not cleaned

Why:

* When running make clean, the following files are not cleaned:

daemon/dtmf_rx_fillin-test.c
daemon/dtmf_rx_fillin-test
daemon/fix_frame_channel_layout-test.c
daemon/fix_frame_channel_layout-test
...
pull/893/head
Sebastien Duthil 6 years ago
parent 8322a8b37f
commit 9e0480a996
No known key found for this signature in database
GPG Key ID: 86C92547A86598AD

@ -15,7 +15,7 @@ BUILD_TEST_ALTS = fix_frame_channel_layout.h dtmf_rx_fillin.h
clean:
rm -f $(OBJS) $(TARGET) $(LIBSRCS) $(DAEMONSRCS) $(MANS) $(ADD_CLEAN) .depend core core.*
rm -f $(BUILD_TEST_ALTS) $(BUILD_TEST_ALTS:.h=-test{.c,}) *.strhash.c $(HASHSRCS)
rm -f $(BUILD_TEST_ALTS) $(BUILD_TEST_ALTS:.h=-test.c) $(BUILD_TEST_ALTS:.h=-test) *.strhash.c $(HASHSRCS)
.depend: $(SRCS) $(LIBSRCS) $(DAEMONSRCS) Makefile
$(CC) $(CFLAGS) -M $(SRCS) $(LIBSRCS) $(DAEMONSRCS) | sed -e 's/:/ .depend:/' > .depend

Loading…
Cancel
Save