24 lines
329 B
Makefile
24 lines
329 B
Makefile
! include <win32.mak>
|
|
|
|
# define these if you want a debug version
|
|
|
|
all:iparp.exe
|
|
|
|
LIBS = ws2_32.lib iphlpapi.lib
|
|
|
|
.c.obj:
|
|
$(cc) $(cdebug) $(cflags) $(cvarsmt) $*.c
|
|
|
|
|
|
iparp.exe:iparp.obj
|
|
$(link) $(ldebug) $(conlflags) -out:$*.exe $*.obj $(conlibsmt) $(LIBS)
|
|
|
|
-pdb:$(PDB) \
|
|
|
|
|
|
clean:
|
|
-del *.obj
|
|
|
|
cleanall:clean
|
|
-del *.exe
|