简体   繁体   中英

C set executable permissions through Makefile

I am using a Makefile to compile my C program and want to make the executable setuid. How can I set the permissions using the Makefile?

The same way you would from the command line ( chmod u+s ..... ) - just have it be the line after you've created the executable

note too that that you could, in addition, do a sudo chown root:root .....

If your environment has install utility you can do it like:

install: program
    install -m 4755 -o root program /usr/local/bin

.PHONY: install

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM