diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-03-22 19:25:39 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-03-22 19:25:39 +0100 |
commit | aaa059ef1988f3e6af722a2a7d79123cfd3b5e2f (patch) | |
tree | 4d6e4b7ba9bfd65574124840037cefcfddf1ecb0 /Makefile | |
download | etisnoop-aaa059ef1988f3e6af722a2a7d79123cfd3b5e2f.tar.gz etisnoop-aaa059ef1988f3e6af722a2a7d79123cfd3b5e2f.tar.bz2 etisnoop-aaa059ef1988f3e6af722a2a7d79123cfd3b5e2f.zip |
Add etisnoop tool
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2acfe75 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ + +CC=gcc + +all: etisnoop + +etisnoop: etisnoop.c lib_crc.c lib_crc.h + $(CC) -Wall -ggdb etisnoop.c lib_crc.c -o etisnoop + +clean: + rm -f etisnoop *.o |