Apps :: Ok, now... how do I really use the make command?
Quote (curaga @ Dec. 23 2007,06:55)
Well, you don't really need the web address, since these can just be browsed using the MyDSL gui. Then you click on it, it will be downloaded & loaded.
Thank you. Beautiful. That's the kind of information I'm looking for.Or see some docs, such as the wiki...
The site where you download a source package will probably tell you how to compile it.
If not, here are some generic tips: - you can extract the package (i.e. via tar) and then look for text files in CAPS, such as README and INSTALL - you could optionally run `./configure --help` before actually configuring it - afterwards, typically `make` will build it and `make install-strip` will install and strip it (or just `make install` if that's not supported)
Quote
and `make install-strip` will install and strip it
- now there's something I didn't know (been doin' it manually up to now) - thanksI have seen no packages so far that have "install-strip" make rule, and I've seen a lot.. Don't get your hopes too up for automation :PWell, if you made your own set of scripts or whatever, you could always do something like `make install-strip || make install` insteadNext Page...
original here.