diff options
Diffstat (limited to 'astraceroute')
-rw-r--r-- | astraceroute/.gitignore | 5 | ||||
-rw-r--r-- | astraceroute/Makefile | 13 |
2 files changed, 18 insertions, 0 deletions
diff --git a/astraceroute/.gitignore b/astraceroute/.gitignore new file mode 100644 index 0000000..6343402 --- /dev/null +++ b/astraceroute/.gitignore @@ -0,0 +1,5 @@ +*.* + +!.gitignore +!Makefile +!build_geoip.sh diff --git a/astraceroute/Makefile b/astraceroute/Makefile new file mode 100644 index 0000000..91f0a9e --- /dev/null +++ b/astraceroute/Makefile @@ -0,0 +1,13 @@ +astraceroute-libs = -lGeoIP \ + -lpthread \ + -lz + +astraceroute-objs = xmalloc.o \ + xio.o \ + xutils.o \ + proto_none.o \ + tprintf.o \ + bpf.o \ + geoip.o \ + ring_rx.o \ + astraceroute.o |