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

참조

공식 사양 보기