Help for this page

Select Code to Download


  1. or download this
    -rw-r--r--  1 hadri  hadri   51 Feb 12 04:24 main_barack
    -rw-r--r--  1 hadri  hadri   63 Feb 12 04:15 my-serial-library.src
    -rw-r--r--  1 hadri  hadri   68 Feb 12 04:27 postlude_general.src
    
  2. or download this
    $ make
    cat my-serial-library.src main_barack postlude_general.src > serial_co
    +mm_barack.pl
    
  3. or download this
    $ echo "This is for Bernie" > main_bernie
    
    $ make CLIENT=bernie
    cat my-serial-library.src main_bernie postlude_general.src > serial_co
    +mm_bernie.pl
    
  4. or download this
     # -- sample Makefile
    CLIENT          =       barack
    
    ...
            tar cvzf ${TAR_NAME} ${TAR_FILES} 
    
    # --- end of Makefile
    
  5. or download this
    ${PROG_NAME}: ${PRELUDE} ${MAIN} ${POSTLUDE}  
    ^Icat ${PRELUDE} ${MAIN} ${POSTLUDE} > ${PROG_NAME}