summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLouis Burda <quent.burda@gmail.com>2023-01-04 14:51:30 +0100
committerLouis Burda <quent.burda@gmail.com>2023-01-04 14:51:30 +0100
commit30d8a9904de544ba14e5cc92b41244867e4c848e (patch)
tree8431a78ac6cff8f15db47509064901e610d8cfaa /Makefile
downloaddnsniff-30d8a9904de544ba14e5cc92b41244867e4c848e.tar.gz
dnsniff-30d8a9904de544ba14e5cc92b41244867e4c848e.zip
Initial version
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..e591957
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,9 @@
+
+all: dnsniff
+
+clean:
+ rm -f dnsniff
+
+dnsniff: dnsniff.c
+
+.PHONY: all clean