Initial commit

This commit is contained in:
Dimitri Lozeve 2016-05-22 14:51:11 +02:00
commit 0238d103f7
5 changed files with 413 additions and 0 deletions

16
Makefile Normal file
View file

@ -0,0 +1,16 @@
CC=clang
CFLAGS=-g -Wall
.PHONY: clean all
all: simple_request arp_spoof
simple_request: simple_request.o arp.o
arp_spoof: arp_spoof.o arp.o
%.o: %.c %.h
$(CC) -c $< $(CFLAGS)
clean:
rm *.o simple_request arp_spoof