Log of study wget source code
2012-9-27 00:04:30
- config
./configure
- compile
make
- install
make install
- uninstall
make uninstall
compile log: (on virtualbox os ubuntu)
dennis@dennis-VBox:~/project/wget/wget-1.9$ ./configure
dennis@dennis-VBox:~/project/wget/wget-1.9$ ls
dennis@dennis-VBox:~/project/wget/wget-1.9$ make
// Error message: autoconf: Command not found
// install autoconf
dennis@dennis-VBox:~/project/wget/wget-1.9$ sudo apt-get install autoconf
dennis@dennis-VBox:~/project/wget/wget-1.9$ make
// Error message: makeinfo: Command not found
// install texinfo
dennis@dennis-VBox:~/project/wget/wget-1.9$ sudo apt-get install texinfo
dennis@dennis-VBox:~/project/wget/wget-1.9$ make
Binary file "wget" will be generated at wget-1.9/src/
todo
analyze Makefile
2012-9-26 00:06:18
- Home
- manual site
- manual generation script gendocs.sh
- pdf format manual
todo
compile wget source code