Satrap/Makefile
2016-06-03 16:46:56 +02:00

21 lines
333 B
Makefile

CC=clang
CFLAGS=-g -Wall
LDFLAGS=-lpthread
.PHONY: clean all
all: simple_request arp_spoof arp_mitm arp_scan
simple_request: simple_request.o arp.o
arp_spoof: arp_spoof.o arp.o
arp_mitm: arp_mitm.o arp.o
arp_scan: arp_scan.o arp.o
%.o: %.c %.h
$(CC) -c $< $(CFLAGS)
clean:
rm *.o simple_request arp_spoof arp_mitm arp_scan