home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / COMPRESS / AU112C.ZIP / AMAKE.CFG < prev    next >
Encoding:
Text File  |  1990-06-12  |  1.1 KB  |  30 lines

  1. ; Amake.Bat allows you to turn one file into a compressed file.
  2. ; ie if you have temp.dat in a directory all by itself and type
  3. ; AMAKE, it will change to temp.lzh
  4.  
  5.      ;──────────────────────────────────────────────────────
  6.      ;options
  7.      ;──────────────────────────────────────────────────────
  8.  
  9.      smart_mode ON          ; Must be on for AMAKE
  10.      recurse OFF            ; Must be off for AMAKE
  11.      date_retain ON         ;ON/OFF/LAST/FIRST
  12.      summary OFF            ;ON/OFF
  13.      keep_smallest OFF      ;ON/OFF
  14.      keep_old BENCH         ;ON/OFF/BENCH
  15.      self_extracts OFF      ;ON/OFF
  16.      convert_pak2 OFF       ;ON/OFF
  17.      convert_zip1 OFF       ;ON/OFF
  18.  
  19.      U * copy ..\*.* .\*.* <
  20.      ;U * red ..\*.* .\  ; Much faster if you have RED or MOVE
  21.      ;──────────────────────────────────────────────────────
  22.      A .LZH LHARC a       ; A = Archiving Method
  23.      ;A .ZIP PKZIP
  24.      ;A .PAK PAK a        ; Uncomment (remove the ;) in front of the archiver(s)
  25.      ;A .ZOO ZOO a        ; you are converting to
  26.      ;A .DWC DWC a
  27.      ;A .ARC PKARC a
  28.  
  29.  
  30.