home *** CD-ROM | disk | FTP | other *** search
- # Makes SWAPTEST.EXE in Small Memory model with Turbo C version 2.0
- # and TASM version 1.0. Enter "make -fswaptest.tc2" at the DOS prompt
-
- # Please change these next two directories to point to your Turbo C 2.0
- # include directory and library directory, respectively
- INC_DIR=m:\include
- LIB_DIR=m:\lib
-
- TLINKDEFS= /m /s /c
- TASMDEFS= /w2 /D_Small /mx /JMASM51
- TCDEFS= -ms -c -I$(INC_DIR)
-
- swaptest.exe: swaps.obj \
- swaptest.obj
- tlink $(TLINKDEFS) $(LIB_DIR)\c0s swaps 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;
-
-
-
-
-