Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Makefile 来编译我的 C 程序并想要制作可执行的 setuid。如何使用 Makefile 设置权限?
与您在命令行 ( chmod u+s .....) 中的方式相同 - 只需在创建可执行文件后将其作为行
chmod u+s .....
另请注意,您还可以执行sudo chown root:root .....
sudo chown root:root .....
如果您的环境有install实用程序,您可以这样做:
install
install: program install -m 4755 -o root program /usr/local/bin .PHONY: install