Skip to content

Commit

Permalink
Merge pull request #147 from golemfactory/evik/fix-makefile-clean
Browse files Browse the repository at this point in the history
Fix Makefile clean for dependency files
  • Loading branch information
evik42 authored Nov 8, 2022
2 parents 8f4c5d3 + 8fc42ad commit a38e422
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/init-container/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ test: $(TESTS)

.PHONY: clean
clean:
$(RM) init $(SRC_DIR)/*.o $(TEST_DIR)/*.o *.o $(TESTS)
$(RM) init $(SRC_DIR)/*.o $(SRC_DIR)/*.d $(TEST_DIR)/*.o *.o $(TESTS)
$(RM) vmlinuz-virt initramfs.cpio.gz
$(MAKE) -s -C $(LIBURING_SUBMODULE) clean

Expand Down

0 comments on commit a38e422

Please sign in to comment.