Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我运行一个模型,我偶尔需要更改它的源代码。我想在 makefile 中有一个规定,它会自动压缩与特定运行相关的所有源文件并将它们与输出文件一起存储。是否可以从生成文件中执行此操作?
谢谢!
我同意约翰的评论。但这是在 Makefile 中做的小菜一碟:
ARCHIVE = src.tar.gz $(ARCHIVE): $(C_FILES) tar cvzf $(ARCHIVE) $(C_FILES)
您可以根据自己的喜好对其进行调整。