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

  1. # Makes SWAPTEST.EXE in Small Memory model with Turbo C++ version 1.0
  2. #  and TASM version 2.0.  Enter "make -fswaptest.tcp" at the DOS prompt.
  3.  
  4. # Please change these two directories to point to your Turbo C++ 1.0
  5. #  include directory and lib directory, respectively
  6. INC_DIR=m:\include
  7. LIB_DIR=m:\lib
  8.  
  9. TLINKDEFS= /m /s /c
  10. TASMDEFS= /w2 /DSmall /mx /JMASM51
  11. TCDEFS= -ms -c -P -K
  12.  
  13. swaptest.exe:           swaps.obj \
  14.                         swaptest.obj
  15.             tlink $(TLINKDEFS) swaps $(LIB_DIR)\c0s 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.