home *** CD-ROM | disk | FTP | other *** search
- # Makes SWAPTEST.EXE in Small Memory model with Turbo C++ version 1.0
- # and TASM version 2.0. Enter "make -fswaptest.tcp" at the DOS prompt.
-
- # Please change these two directories to point to your Turbo C++ 1.0
- # include directory and lib directory, respectively
- INC_DIR=m:\include
- LIB_DIR=m:\lib
-
- TLINKDEFS= /m /s /c
- TASMDEFS= /w2 /DSmall /mx /JMASM51
- TCDEFS= -ms -c -P -K
-
- swaptest.exe: swaps.obj \
- swaptest.obj
- tlink $(TLINKDEFS) swaps $(LIB_DIR)\c0s swaptest.obj, swaptest, swaptest, $(LIB_DIR)\cs
-
- swaptest.obj: swaptest.c \
- swap.h
- tcc $(TCDEFS) swaptest.c
-
-
- swaps.obj: swap.asm
- tasm $(TASMDEFS) swap.asm, swaps.obj;
-
-
-
-
-