I want to install packages with using make file. What are the necessary packages for build ,compile package and install make file ?
I want to install packages with using make file. What are the necessary packages for build ,compile package and install make file ?
Do you want to make a "make file" or compile it?
If it's for writing a make file: gedit or your preferred editor.
If it's for compilation, it's easy: gcc, g++, make, devtools (or maybe dev-tools or development-tools).
build_essential
to start with. Then you can install necessary dependancies/support libraries based offapt-get build-dep
, or the error messages from./configure
.If you want to grow together a quick and dirty deb for install, use
checkinstall
instead ofmake install