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

  1. #This makefile is set up for my make program and Microsoft C v5.1
  2. #It will not run properly under Microsoft MAKE program.
  3. #setargv.obj is Microsoft's code for wild card expansion
  4. #wild card expansion routine to come.
  5.  
  6. #the following means small model, maximum optimizing, define NDEBUG
  7. CFLAGS =-AS -Ox -DNDEBUG -DMSC -DBIND
  8. LIB =D:\MSC\LIB
  9. BIN =c:/os2/binp
  10. OBJ=compress.obj compusi.obj compapi.obj
  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 : $(OBJ)
  17.     link @os2.lnk
  18.  
  19. btoa.exe: btoa.obj
  20.     cl -DMSC btoa.c
  21.  
  22. atob.exe: atob.obj
  23.     cl -DMSC atob.c
  24.  
  25. install:
  26.     cp btoa.exe $(BIN)/btoa.exe
  27.     cp atob.exe $(BIN)/atob.exe 
  28.     cp compos2.exe $(BIN)/comp16.exe
  29.     cp compos2.exe $(BIN)/zcat.exe
  30.     cp compos2.exe $(BIN)/uncomp.exe
  31.  
  32. $(OBJ): compress.h compress.fns
  33.