home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / OS2 / LNVREM.ZIP / LNREMSRC.EXE / DECODE.MAK < prev    next >
Text File  |  1993-09-13  |  1KB  |  53 lines

  1. #-------------------------------------------------------------------------
  2. #
  3. #       Unit test driver (2)
  4. #
  5. #-------------------------------------------------------------------------
  6. .SUFFIXES:
  7. .SUFFIXES: .rc .res .obj .lst .c .asm .hlp .itl .ipf
  8.  
  9. CC  = icc /Ge- /Sm /Ti /Gm+ /G4 /Mp /C /O- /DDEBUG /DIBMTOR /DOS2C
  10. ASM = masm386
  11. LFLAGS = /nodefault /codeview /map /NOE
  12. LINK = link386 $(LFLAGS)
  13. LIBS = libc os2386
  14. DLLLIBS = libcdll os2386
  15. MTLIBS = libcmt os2386
  16.  
  17.  
  18. .c.lst:
  19.     $(CC) -Fc$*.lst -Fo$*.obj $*.c
  20.  
  21. .c.obj:
  22.     $(CC) -Fo$*.obj $*.c
  23.  
  24. .asm.obj:
  25.     $(ASM) -Mx $*.asm,$*.obj;
  26.  
  27. .ipf.hlp:
  28.         ipfc $*.ipf /W3
  29.  
  30. .itl.hlp:
  31.         cl386 -P $*.itl
  32.         ipfc $*.i
  33.     del $*.i
  34.  
  35. .rc.res:
  36.     rc -r $*.rc
  37.  
  38.  
  39. #-------------------------------------------------------------------------
  40. #
  41. #       Dependencies
  42. #
  43. #-------------------------------------------------------------------------
  44.  
  45. all:            decode.exe
  46.  
  47. decode.obj:      decode.c
  48.  
  49. decode.exe:       decode.obj
  50.    link386 @decode.lnk
  51.  
  52.  
  53.