Makefile : make 변수를 사용하여 복사-> error; 변수 없이는 그렇지 않습니다!
다음 makefile에서 InputLocation:=./Test OutputLocation:=$(InputLocation)/Output Input:=$(wildcard $(InputLocation)/*.md) Output:=$(patsubst $(InputLocation)/%, $(OutputLocation)/%, $(Input:Input=Output)) .PHONY: all all: $(Output) $(OutputLocation)/%.md : $(InputLocation)/%.md cp -rf $< $@; ActualFilePath="$<" InterimFile1Path="$@" #cp -rf $(ActualFilePath) $(InterimFile1Path); cp -rf $< $@; 파일을 성공적으로 복사합니다. cp -rf $(ActualFilePath) $(InterimFile1Path)오류가 발생 하는 동안cp: missing file operand 왜 그래야만하지?