This probably isn't exactly the answer your looking for, but I am really sympathetic to this problem, and the strange aloofness that this question seems to encounter.
In this case, you already have some information about what you're looking for. You're looking for some specific part of some documentation page for make files.
here is the documentation for makefiles
http://www.gnu.org/software/make/manual/make.html
Conveniently, the entire documentation is on one giant html page. In firefox, press control+f
(command+f on macs), to bring up the search within page widget. In firefox's search field, type the symbol your looking for. It reports 37 matches, which you can look through indvidually.
Sometimes though, the sequence of symbols is idiomatic, and isn't in the documentation for a language. How would an outsider know, for instance that a $ in javascript usually refers to jquery, or prototype, or some other included library?
In this case, there's probably a question on stack overflow somewhere that would explain that. However, searching stackoverflow for a $ symbol doesn't work. You could just ask the question, you'll probably get an answer. (as you did in this case).
I think we should perhaps make a stackoverflow feature request? It's not a general web search, but stackoverflow is uniquely positioned to answer problems like this in a way the general web isn't.
edit: after looking around at meta.stackoverflow.com I found a request for this already exists : http://meta.stackoverflow.com/questions/19870/we-need-to-be-able-to-search-for-punctuation-symbols
It would seem that if you press "ask a question" and write
What does the symbol [symbol] in [language] mean?
in the title, then move your cursor to the body, SO will suggest a bunch of questions that were already asked, that are much better results than using "search". You'll likely find the answer to any symbol related query there. And if you don't, go ahead and post your question. I'm sure there's about 10 overeager nerds that will be eager to tell you that the question has already been asked, and point you to where the duplicate questions are, and only at the cost of a few potential downvotes!
Stack Overflow should really add this feature though. It's ridiculous that it doesn't. Duplicate questions is merely the cost that Stackoverflow will have to accept for not having this feature.