How to undo intermediate file deletion

前端 未结 3 1007
小蘑菇
小蘑菇 2020-12-10 00:35

I have a software stack that creates some intermediate files as a part of build process. There is some problem come up and the build breaks. I want to have a look at those i

3条回答
  •  天命终不由人
    2020-12-10 01:12

    You can also use .SECONDARY, which will preserve the specified files even if the build does not break.

    e.g.

     .SECONDARY:
    

提交回复
热议问题