dhcrypto/MITM/makefile
2022-06-13 03:53:40 +00:00

9 lines
302 B
Makefile

MITM:MITM.c aes-debug.o aes-gcm.o aes-internal.o
gcc MITM.c -o MITM aes-debug.o aes-gcm.o aes-internal.o -l gmp -l pcap
aes-debug.o:aes-debug.c
gcc -c aes-debug.c -o aes-debug.o
aes-gcm.o:aes-gcm.c
gcc -c aes-gcm.c -o aes-gcm.o
aes-internal.o:aes-internal.c
gcc -c aes-internal.c -o aes-internal.o