diff options
author | Nicholas DeMarinis <ndemarinis@wpi.edu> | 2023-09-11 23:45:18 -0400 |
---|---|---|
committer | Nicholas DeMarinis <ndemarinis@wpi.edu> | 2023-09-11 23:45:18 -0400 |
commit | bf66118f56a99fc3605c9f6e6044389388821499 (patch) | |
tree | a643f1000c06956b3ef9f950f4430308428f43fc /util | |
parent | 6772405e1560fed367fac4f774f7d40b0b3ec6a5 (diff) |
Added makefile for installing snowcast dissector.
Diffstat (limited to 'util')
-rw-r--r-- | util/snowcast-dissector/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/util/snowcast-dissector/Makefile b/util/snowcast-dissector/Makefile new file mode 100644 index 0000000..b8f5013 --- /dev/null +++ b/util/snowcast-dissector/Makefile @@ -0,0 +1,6 @@ +INSTALL=install +TARGET=~/.config/wireshark/plugins + +install: + mkdir -pv $(TARGET) + install -m644 cs168_snowcast.lua $(TARGET) |