We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
목표파일 : 목표파일을 만드는데 필요한 구성요소들 목표를 달성하기 위한 명령 1 목표를 달성하기 위한 명령 2
$@ : 현재 타겟 파일 이름 $^ : 현재 타겟 파일의 종속 리스트
CC = gcc TARGET = main DEPENDENCY = collatz.c main.c error.c $(TARGET): $(DEPENDENCY) $(CC) -o $@ $^ clean : rm -rf *.o $(TARGET)
The text was updated successfully, but these errors were encountered:
참고
Sorry, something went wrong.
No branches or pull requests
Makefile 작성 규칙
매크로 사용
-> 대부분의 책은 $(..)을 권한다.
내부 매크로 사용
예시
The text was updated successfully, but these errors were encountered: