Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CMake: What's the usage of "make depend"?

One of the targets generated by cmake is depend:

The following are some of the valid targets for this Makefile:
... all (the default if no target is provided)
... clean
... depend
... edit_cache
... rebuild_cache

What would be the effect of executing "make depend"?

like image 297
B Faley Avatar asked Jun 08 '13 08:06

B Faley


1 Answers

This builds the dependencies rules of some goals of the Makefile. See http://en.wikipedia.org/wiki/Makedepend

like image 177
Jean-Baptiste Yunès Avatar answered Sep 19 '22 14:09

Jean-Baptiste Yunès