Документ взят из кэша поисковой машины. Адрес
оригинального документа
: http://mavr.sao.ru/hq/sts/linux/book/c_marshall/section2_17_6.html
Дата изменения: Unknown Дата индексирования: Fri Dec 28 20:36:40 2007 Кодировка: Поисковые слова: п п п п п п п п п п п п п п п п п п п п п п п п п п |
We can define macros in make - they are typically used to store source file names, object file names, compiler options and library links.
They are simple to define, e.g.:
where (SOURCES: .c = .o) makes .c extensions of SOURCES .o extensions.
To reference or invoke a macro in make do $(macro_name).e.g.:
NOTE:
There are many internal macros (see manual pages) here a few common ones:
Appendix contains an example makefile for the WriteMyString modular program discussed in the last Chapter.