/usr/lib/klibc/include/Kbuild is in libklibc-dev 2.0.3-0ubuntu1.
This file is owned by root:root, with mode 0o664.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | always := asm
$(obj)/asm:
@echo ' SYMLINK $@ -> include/asm-$(KLIBCASMARCH)'
$(Q)if [ '$(KLIBCKERNELSRC)/.' -ef '$(obj)/../..' ]; then \
ln -fsn ../../include/asm-$(KLIBCASMARCH) $@; \
else \
ln -fsn $(KLIBCKERNELSRC)/include/asm-$(KLIBCASMARCH) $@; \
fi
clean-files := asm
|