dos33fsprogs/ethernet/c/Makefile

15 lines
197 B
Makefile
Raw Normal View History

CC = gcc
CFLAGS = -Wall -O2
2016-11-20 05:15:43 +00:00
LFLAGS =-lpcap
all: testarp
testarp: testarp.o
$(CC) $(LFLAGS) -o testarp testarp.o
testarp.o: testarp.c
$(CC) $(CFLAGS) -c testarp.c
clean:
rm -f *~ *.o testarp