home *** CD-ROM | disk | FTP | other *** search
/ GRIPS 2: Government Rast…rocessing Software & Data / GRIPS_2.cdr / dos / imdisp / source / tc2 / swaptest.tc2 < prev   
Encoding:
Text File  |  1990-10-04  |  785 b   |  28 lines

  1. # Makes SWAPTEST.EXE in Small Memory model with Turbo C version 2.0
  2. #  and TASM version 1.0.  Enter "make -fswaptest.tc2" at the DOS prompt
  3.  
  4. # Please change these next two directories to point to your Turbo C 2.0
  5. #  include directory and library directory, respectively
  6. INC_DIR=m:\include
  7. LIB_DIR=m:\lib
  8.  
  9. TLINKDEFS= /m /s /c
  10. TASMDEFS= /w2 /D_Small /mx /JMASM51
  11. TCDEFS= -ms -c -I$(INC_DIR)
  12.  
  13. swaptest.exe:           swaps.obj \
  14.                         swaptest.obj
  15.             tlink $(TLINKDEFS) $(LIB_DIR)\c0s swaps swaptest.obj, swaptest, swaptest, $(LIB_DIR)\cs
  16.  
  17. swaptest.obj:           swaptest.c \
  18.                         swap.h
  19.             tcc $(TCDEFS) swaptest.c
  20.  
  21.  
  22. swaps.obj:              swap.asm
  23.             tasm $(TASMDEFS) swap.asm, swaps.obj;
  24.  
  25.  
  26.  
  27.  
  28.