Skip to main content
DevTools24

Makefile 生成器

使用可视化编辑器生成 Makefile。添加目标、变量和依赖项,使用语言预设。

=
=
make
# Runs default target
make target_name
# Runs specific target

Makefiles - 技术详情

Make is a build automation tool that reads Makefiles to determine how to build targets. Targets have dependencies and commands. Use variables for reusability, .PHONY for non-file targets, and tab indentation for commands.

命令行替代方案

# Run default target\nmake\n\n# Run specific target\nmake build\nmake clean

参考

查看官方规范