我正在尝试设置一个 Makefile 来搜索和复制一些文件(if-else 条件),但我无法弄清楚它到底有什么问题?(你我很确定这是因为空格/制表符的组合写在错误的地方)。请问我能得到一些帮助吗?
这是我目前拥有的:
obj-m = linuxmon.o
KDIR = /lib/modules/$(shell uname -r)/build
UNAME := $(shell uname -m)
all:
$(info Checking if custom header is needed)
ifeq ($(UNAME), x86_64)
$(info Yes)
F1_EXISTS=$(shell [ -e /usr/include/asm/unistd_32.h ] && echo 1 || echo 0 )
ifeq ($(F1_EXISTS), 1)
$(info Copying custom header)
$(shell sed -e 's/__NR_/__NR32_/g' /usr/include/asm/unistd_32.h > unistd_32.h)
else
F2_EXISTS=$(shell [[ -e /usr/include/asm-i386/unistd.h ]] && echo 1 || echo 0 )
ifeq ($(F2_EXISTS), 1)
$(info Copying custom header)
$(shell sed -e 's/__NR_/__NR32_/g' /usr/include/asm-i386/unistd.h > unistd_32.h)
else
$(error asm/unistd_32.h and asm-386/unistd.h does not exist)
endif
endif
$(info No)
endif
@make -C $(KDIR) M=$(PWD) modules
clean:
make -C $(KDIR) M=$(PWD) clean
rm unistd_32.h
无论如何,这将打印两次“是”,“复制标题”,然后它会退出说 sed 无法读取/usr/include/asm-i386/unistd.h
(当然它无法读取,因为我在 x64 系统上)。我可以说make
只是不理解 if/else 而是逐行运行所有内容。