autotools와 GNU make를 사용하여 C 라이브러리를 구축 중인데 다음 줄이 있습니다.
all: config.h
$(MAKE) $(AM_MAKEFLAGS) all-recursive
Makefile에서 컴파일할 때 오류가 발생합니다.
make all-recursive
make: make: Permission denied
make: *** [Makefile:427: all] Error 127
뭐가 문제 야?
autotools와 GNU make를 사용하여 C 라이브러리를 구축 중인데 다음 줄이 있습니다.
all: config.h
$(MAKE) $(AM_MAKEFLAGS) all-recursive
Makefile에서 컴파일할 때 오류가 발생합니다.
make all-recursive
make: make: Permission denied
make: *** [Makefile:427: all] Error 127
뭐가 문제 야?