home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tricks of the Windows Gam…ming Gurus (2nd Edition)
/
Disc2.iso
/
msdn_vcb
/
samples
/
vc98
/
sdk
/
netds
/
winsock
/
ping
/
makefile
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Makefile
|
1996-07-26
|
301 b
|
18 lines
!include <win32.mak>
LIBS = kernel32.lib oldnames.lib libcmt.lib ws2_32.lib
.c.obj:
$(cc) $(cdebug) $(cflags) $(cvarsmt) $*.c
all:ping.exe
ping.exe:ping.obj
$(link) $(ldebug) $(conlflags) -out:$*.exe $** $(LIBS)
clean:
-del *.obj *.pdb *.ilk
cleanall:clean
-del *.exe