[ Skip to the content ]

Institute of Formal and Applied Linguistics Wiki


[ Back to the navigation ]

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
courses:mapreduce-tutorial:step-21 [2012/01/30 15:34]
majlis
courses:mapreduce-tutorial:step-21 [2012/01/31 10:47]
majlis
Line 6: Line 6:
   - Create a ''Makefile'' containing <file Makefile Makefile>include /net/projects/hadoop/java/Makefile</file>   - Create a ''Makefile'' containing <file Makefile Makefile>include /net/projects/hadoop/java/Makefile</file>
  
-When typing ''make'', every Java file is compiled (with the Hadoop library and some extra classes) to a jar file. It is of course possible to compile just selected sources using ''make file1.jar file2.jar''.+===== Compilation ===== 
 + 
 +When typing ''make'', every Java file is compiled (with the Hadoop library and some extra classes) to a jar file. It is of course possible to compile just selected sources using
 +  make ClassName1.jar ClassName2.jar 
 +or  
 +  make -f /net/projects/hadoop/java/Makefile ClassName1.jar
  
 Command ''make clean'' remove for every Java file its jar file and subdirectory with compiled classes. Command ''make clean'' remove for every Java file its jar file and subdirectory with compiled classes.
Line 25: Line 30:
   * Key F8 opens a //taglist// -- small window with classes, fields and functions in the current file.   * Key F8 opens a //taglist// -- small window with classes, fields and functions in the current file.
   * Pressing ''\\'' comments/uncomments current (or selected) line.   * Pressing ''\\'' comments/uncomments current (or selected) line.
- 
- 
  
 ---- ----

[ Back to the navigation ] [ Back to the content ]