home *** CD-ROM | disk | FTP | other *** search
/ Los Alamos National Laboratory / LANL_CD.ISO / software / compres / src / src_rle / makefile < prev    next >
Encoding:
Makefile  |  1992-01-12  |  244 b   |  14 lines

  1. all:    index_gen encode decode
  2.  
  3. OBJ1 = index_gen.o io.o
  4. index_gen:    $(OBJ1)
  5.     cc -o index_gen $(OBJ1)
  6.  
  7. OBJ2 = encode.o rle_encode.o io.o
  8. encode:    $(OBJ2)
  9.     cc -o encode $(OBJ2)
  10.  
  11. OBJ3 = decode.o rle_decode.o io.o
  12. decode:    $(OBJ3)
  13.     cc -o decode $(OBJ3)
  14.