Add distclean to clean entire ../bin folder

This commit is contained in:
Joost Rijneveld 2019-04-16 10:35:48 +02:00
parent db7843c5eb
commit fc7afd8f76
No known key found for this signature in database
GPG Key ID: A4FE39CF49CBC553

View File

@ -64,3 +64,7 @@ clean:
$(RM) $(DEST_DIR)/test_aes $(RM) $(DEST_DIR)/test_aes
$(RM) $(DEST_DIR)/test_fips202 $(RM) $(DEST_DIR)/test_fips202
$(RM) $(DEST_DIR)/test_sha2 $(RM) $(DEST_DIR)/test_sha2
.PHONY: distclean
distclean:
$(RM) -r $(DEST_DIR)