Penguin
Diff: MakefileVariables
EditPageHistoryDiffInfoLikePages

Differences between current version and revision by previous author of MakefileVariables.

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

Newer page: version 6 Last edited on Thursday, August 23, 2007 3:15:06 pm by BenStaz
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)  
+;LD_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