1
GNake makefile을 NMake makefile로 번역 중입니다. 나는 GNU 메이크 이러한 건설 건너 온 :
DEP1 = dependencyA1.c dependencyA1.c
DEP2 = dependencyB1.c dependencyB2.c
libABC.a: $(DEP1) $(DEP2)
$(ARCHIVE) libABC.a $^ #**what this does?**
을 나는 꽤 자주 GNU 메이크 쓰기하지만 나는 그런 지시를 발견 처음이다. 더 많은 경험이있는 사람이 그것이 무엇을 설명 할 수 있을까요?
미리 감사드립니다. 감사합니다.
http://www.gnu.org/software/make/manual/make.html#Automatic-Variables – Mat