我正在使用 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
怎么了?