home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c017 / 34.ddi / CSWAPXXX.ZIP / SWAPTEST.MSC < prev    next >
Encoding:
Text File  |  1990-09-06  |  541 b   |  24 lines

  1. # Makes SWAPTEST.EXE in Small memory model (Microsoft C).  Enter
  2. #  "make swaptest.msc" at DOS command prompt.
  3.  
  4. TLINKDEFS= /m /s /c /v /l
  5.  
  6.  
  7. MASMDEFS= /Dsmall /mx
  8. MSCDEFS= /c /W2 /AS
  9. LINKDEFS=/MAP/STACK:1024/
  10.  
  11. swaps.obj:              swap.asm
  12.             masm $(MASMDEFS) swap.asm, swaps.obj;
  13.  
  14. swaptest.obj:           swaptest.c \
  15.                         swap.h
  16.             cl $(MSCDEFS) swaptest.c
  17.  
  18. swaptest.exe:           swaps.obj \
  19.                         swaptest.obj
  20.             link $(LINKDEFS) @swaptest.lnk
  21.  
  22.  
  23.  
  24.