summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/winpcap/Examples-pcap/readfile/GNUmakefile
blob: 967bc186ec46edc0d2e261bf5b57161dbfbc5237 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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 $<