home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / compress / compress.lzh / COMPRESS / MAKEFILE < prev    next >
Encoding:
Text File  |  1991-08-16  |  832 b   |  33 lines

  1. CFLAGS =    -damiga -dlattice -dBITS=$(BITS) 
  2. OBJ =        compress.o stat.o
  3. CC =        lc
  4.  
  5. # The following define determines the amount of dynamic memory
  6. # compress will use for it's tables.  The following is a rough
  7. # guideline of the amount of free contiguous space needed to run
  8. # with various settings of BITS.
  9. #
  10. #    BITS        Free contiguous memory required
  11. #    -----        -------------------------------
  12. #
  13. #    16        433000
  14. #    15        230000
  15. #    14        128000
  16. #    13         73000
  17. #
  18. # In particular, note that the default of 16 will probably not run
  19. # on Amigas without extended (more than 512K) memory.  Also note that
  20. # this can be adjusted without any Makefile or source changes by
  21. # specifying BITS on the command line to "make".  I.E.  "make BITS=13".
  22.  
  23. BITS =        16
  24.  
  25. .c.o:
  26.         $(CC) $(CFLAGS) -o$@ $*.c
  27.  
  28. all :        compress
  29.  
  30. compress :    compress.o stat.o
  31.         blink with link.cmd
  32.  
  33.