network arplab finished
This commit is contained in:
17
network/start/lib/npcap/Examples-pcap/UDPdump/GNUmakefile
Normal file
17
network/start/lib/npcap/Examples-pcap/UDPdump/GNUmakefile
Normal file
@@ -0,0 +1,17 @@
|
||||
# Makefile for cygwin gcc
|
||||
# Loris Degioanni
|
||||
|
||||
PCAP_PATH = ../../lib
|
||||
CFLAGS = -g -O -mno-cygwin -I ../../include
|
||||
|
||||
OBJS = udpdump.o
|
||||
LIBS = -L ${PCAP_PATH} -lwpcap -lwsock32
|
||||
|
||||
all: ${OBJS}
|
||||
${CC} ${CFLAGS} -o udpdump.exe ${OBJS} ${LIBS}
|
||||
|
||||
clean:
|
||||
rm -f ${OBJS} udpdump.exe
|
||||
|
||||
.c.o:
|
||||
${CC} ${CFLAGS} -c -o $*.o $<
|
||||
Reference in New Issue
Block a user