在* nix中,当我编译软件时,我该怎么做:
# make install
VS
# make install clean
?
解决方法:
当您使用参数调用make时,您将为其提供目标列表.
在Upgrading Ports section of the FreeBSD Handbook中对此进行了一些讨论,其中说:
Unlike the usual make install clean command, it will upgrade all
the dependencies prior to building and installing the selected
port.
[...]
Note: You can save two extra steps by just running make install
clean instead of make, make install and make clean as three
separate steps.
另外,作为旁注:除非确实需要,否则不要以root用户身份构建程序包.一般来说,你应该在一个无特权的帐户中工作,然后作为最后一步,你可以做sudo make install,如果你不得不这样做.但是,将非特权用户添加到对安装目录具有写访问权限的组中会更好,或者甚至更好地将其安装到非系统区域(例如,使用./configure可以使用–prefix =)因为大多数系统,无论是Linux还是BSD,通常都有软件包和用于安装软件的打包系统.