여러 개의 설명 블록에 포함된 대상
여러 가지 명령을 사용하여 하나의 대상을 하나 이상의 설명 블록에 업데이트하려면 대상과 종속 파일 사이에 두 개의 인접한 콜론(::)을 지정합니다.
target.lib :: one.asm two.asm three.asm
ml one.asm two.asm three.asm
lib target one.obj two.obj three.obj
target.lib :: four.c five.c
cl /c four.c five.c
lib target four.obj five.obj