qt/ledset/WpdPack_4_1_2/Examples-pcap/readfile/GNUmakefile
2022-08-25 18:43:03 +08:00

18 lines
314 B
Makefile

# Makefile for cygwin gcc
# Nate Lawson <nate@rootlabs.com>
PCAP_PATH = ../../lib
CFLAGS = -g -O -mno-cygwin -I ../../include
OBJS = readfile.o
LIBS = -L ${PCAP_PATH} -lwpcap
all: ${OBJS}
${CC} ${CFLAGS} -o readfile.exe ${OBJS} ${LIBS}
clean:
rm -f ${OBJS} readfile.exe
.c.o:
${CC} ${CFLAGS} -c -o $*.o $<