Penguin
Diff: MakefileVariables
EditPageHistoryDiffInfoLikePages

Differences between version 5 and predecessor to the previous major change of MakefileVariables.

Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History

Newer page: version 5 Last edited on Thursday, August 9, 2007 9:57:46 pm by BenStaz Revert
Older page: version 3 Last edited on Saturday, October 4, 2003 5:00:30 pm by PerryLorier Revert
@@ -16,7 +16,12 @@
 ;LEX: path to lex(1) 
  
 !Arguments to programs 
 ;CFLAGS: flags passed to the C compiler. for example: "-g -Wall" 
-;LDLIBS: Libraries, for example: "-ldl" 
+;LDLIBS: Libraries to link to , for example: "-ldl" 
 ;LDFLAGS: flags passed to the linker 
 ;ARFLAGS: flags passed to ar(1) 
+;C_INCLUDE_PATH: directories to add to the include path. (for c header files)  
+;CPLUS_INCLUDE_PATH: directories to add to the include path. (for c++ header files)  
+;LIBRARY_PATH: directories to add to the link path.  
+  
+Note : To specify multiple directories in a search path use a colon separated list : DIR1:DIR2:DIR3