diff options
| author | SkyperTHC | 2026-03-03 06:28:55 +0000 |
|---|---|---|
| committer | SkyperTHC | 2026-03-03 06:28:55 +0000 |
| commit | 5d3573ef7a109ee70416fe94db098fe6a769a798 (patch) | |
| tree | dc2d5b294c9db8ab2db7433511f94e1c4bb8b698 /other/arpmitm/Makefile | |
| parent | c6c59dc73cc4586357f93ab38ecf459e98675cc5 (diff) | |
packetstorm sync
Diffstat (limited to 'other/arpmitm/Makefile')
| -rw-r--r-- | other/arpmitm/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/other/arpmitm/Makefile b/other/arpmitm/Makefile new file mode 100644 index 0000000..603c4f2 --- /dev/null +++ b/other/arpmitm/Makefile | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | CC=gcc | ||
| 2 | CFLAGS=-Wall -O2 | ||
| 3 | LIBS=-lm | ||
| 4 | LIBNET_DEFS=`libnet-config --defines` | ||
| 5 | LIBNET_LIBS=`libnet-config --libs` | ||
| 6 | |||
| 7 | all: | ||
| 8 | |||
| 9 | $(CC) $(CFLAGS) $(LIBNET_DEFS) arpmitm.c -o arpmitm $(LIBS) $(LIBNET_LIBS) | ||
| 10 | strip arpmitm | ||
| 11 | |||
| 12 | clean: | ||
| 13 | rm -vf arpmitm | ||
