home *** CD-ROM | disk | FTP | other *** search
- #
- # makefile for PDCLKSET for Turbo Make. MS-Make loses.
- #
- # Note: You need some asm-files from the Crynwr (former Clarkson) collection
- # of packet drivers, available from simtel20.army.mil, oak.oakland.edu,
- # wuarchive.wustl.edu, and others, in the packet drivers directory.
-
- ASM = tasm
- LINK = tlink
-
- all: progs
-
- progs: pdclkset.com
-
- .asm.obj:
- $(ASM) $*;
-
- pdclkset.obj: pdclkset.asm settime.asm ip.asm arp.asm bufs.asm \
- pktdr.asm ping.asm tblbuild.asm \
- defs.asm chrout.asm skipblk.asm movemem.asm pkterr.asm
- #
- # (the files on the last line above are from the Crynwr packet driver
- # collection)
-
- pdclkset.com: pdclkset.obj
- $(LINK) pdclkset,pdclkset/m;
- exe2com pdclkset
- del pdclkset.exe
-
- clean: nul
- del *.obj
- del *.com
- del *.exe
- del *.map
-