home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / pc / source / shark.lzh / makefile.uni < prev    next >
Makefile  |  1990-11-12  |  636b  |  25 lines

  1. #
  2. # MAKE    FILE FOR unix systems
  3. # add what optimizion options your system supports
  4. # on some systems there may be no setvbuf() or the code may generate
  5. # errors if the large buffer is used for the stream, if so :
  6. # add -DNO_SETVBUF
  7. # and if your system doesn't support either setvbuf or setbuf
  8. # add -DNO_SETBUF
  9. # add -DALLOC if your system uses alloc() instead of malloc()
  10. # add -DNOSIGNAL for faster processing on a unix pc
  11.  
  12. CFLAGS=-DUNIX -DNDEBUG
  13. OFLAGS=
  14. LIB=
  15. PROG=compress
  16. OBJ=compress.o compusi.o compapi.o
  17.  
  18. $(PROG): $(OBJ)
  19.     cc -o $(PROG) $(OFLAGS) $(OBJ) $(LIB)
  20.  
  21. compapi.o: compress.h
  22. compress.o: compress.h
  23. compusi.o: compress.h
  24.  
  25.