Golevka / emacs-clang-complete-async

An emacs plugin to complete C and C++ code using libclang
360 stars 71 forks source link

Prepend the object path to .o files in generated dependency rules. #41

Open toojays opened 11 years ago

toojays commented 11 years ago

The makefile was generating dependency rules which did not include the directory part of the object filenames. This caused a problem where the project would not be rebuilt if only the header files changed.

This commit fixes that by correctly specifying the name of the object files in the dependency generation rule. At the same time, it simplifies the dependency generation rule, by passing extra options to the compiler so it generates the exact file we want. This means we no longer need to use sed to rewrite the dependency files.

This addresses Golevka/emacs-clang-complete-async#40.

toojays commented 11 years ago

Sorry, I just realized I didn't use the correct syntax in my commit message to close the issue when you pull the commit. :(