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 | c64727408b8330b44a274e138d5fe6b3c4efb2c2 (patch) | |
tree | c468192b6c1eaa57440413ad6ed3c4577b5fb06b /etisnoop/Makefile | |
parent | dc5956dabefcb4545f1732c1a0c76a9b8a0cf7da (diff) | |
download | mmbtools-aux-c64727408b8330b44a274e138d5fe6b3c4efb2c2.tar.gz mmbtools-aux-c64727408b8330b44a274e138d5fe6b3c4efb2c2.tar.bz2 mmbtools-aux-c64727408b8330b44a274e138d5fe6b3c4efb2c2.zip |
Add etisnoop tool
Diffstat (limited to 'etisnoop/Makefile')
-rw-r--r-- | etisnoop/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/etisnoop/Makefile b/etisnoop/Makefile new file mode 100644 index 0000000..2acfe75 --- /dev/null +++ b/etisnoop/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 |