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

  1. #This makefile is set up for Turbo C v2.0 and Turbo make utility
  2.  
  3. #the following means small model, maximum optimizing, define NDEBUG
  4. #DFLG=-DNDEBUG
  5. DFLG=
  6. CFLAGS =-ms -G -O -r
  7. INCLUDE=D:\TC\INCLUDE
  8. LIB =D:\TC\LIB
  9. WILD=$(LIB)\WILDARGS.OBJ
  10. #WILD=
  11.  
  12. #use the following for linking non debug version
  13. #file set up for library for real mode operation
  14. #you will have to modify for your compiler
  15.  
  16. compress.exe : compress.obj compusi.obj compapi.obj
  17.     tcc $(CFLAGS) -L$(LIB) compress.obj compusi.obj compapi.obj $(WILD)
  18.  
  19.  
  20. compress.obj: compress.c compress.h
  21.     tcc -c $(CFLAGS) $(DFLG) -I$(INCLUDE) compress.c
  22.  
  23. compusi.obj: compusi.c compress.h
  24.     tcc -c $(CFLAGS) $(DFLG) -I$(INCLUDE) compusi.c
  25.  
  26. compapi.obj: compapi.c compress.h
  27.     tcc -c $(CFLAGS) $(DFLG) -I$(INCLUDE) compapi.c
  28.  
  29.