You are not logged in.
Pages: 1
i'm working on a project written in C++ and as usual I have to write the dependencies in the makefile. This annoys me since each time I add a new #include i have to modify the makefile. I found on the web that makedepend can do this automatically, but I cannot find it in arch repository? Does anybody know another tool to help me?
--
Alexandru
Offline
Take a look here, http://rusmafia.org/linux/node/760 - the site is in russian, but u'll see general makefile which i believe handles dependencies. I'm hope i'm not wrong.
Offline
makedepend is provided by the imake package (was installed on my computer).
As a side note, does somebody know a reliable way to find the package providing a file when you don't have the file on your computer ?
Offline
autoconf and automake do this, and are probably worth learning because they pervade free software.
Offline
Pages: 1