After talking with Pieter he changed my mind about this, it is better to
have a simpler install script that works everywhere, and the complex one
can be always executed if needed by hand. We'll make possibly a new
target for the full featured installation script, and even suggest it
after a Make install.
This reverts commit
f1e60d75309990b25a1763e004d7044c77c53834.
@../utils/generate-command-help.rb > help.h
install: all
- @../utils/install_server.sh
+ mkdir -p $(INSTALL_BIN)
+ $(INSTALL) $(PRGNAME) $(INSTALL_BIN)
+ $(INSTALL) $(BENCHPRGNAME) $(INSTALL_BIN)
+ $(INSTALL) $(CLIPRGNAME) $(INSTALL_BIN)
+ $(INSTALL) $(CHECKDUMPPRGNAME) $(INSTALL_BIN)
+ $(INSTALL) $(CHECKAOFPRGNAME) $(INSTALL_BIN)
#check for root user TODO: replace this with a call to "id"
if [ `whoami` != "root" ] ; then
- echo "ERROR: You must run this installation script as root. Sorry!\n"
+ echo "You must run this script as root. Sorry!"
exit 1
fi