2022-05-03 14:34:57 -04:00
|
|
|
LIBS = \
|
|
|
|
|
suricata/__init__.py \
|
2023-11-16 17:19:23 -05:00
|
|
|
suricata/config/__init__.py
|
2022-05-03 14:34:57 -04:00
|
|
|
|
2023-11-16 17:19:23 -05:00
|
|
|
EXTRA_DIST = $(LIBS) suricata/config/defaults.py
|
2018-01-09 08:51:26 -05:00
|
|
|
|
|
|
|
|
if HAVE_PYTHON
|
|
|
|
|
|
|
|
|
|
install-exec-local:
|
2022-05-03 14:34:57 -04:00
|
|
|
install -d -m 0755 "$(DESTDIR)$(prefix)/lib/suricata/python/suricata/config"
|
|
|
|
|
install suricata/config/defaults.py \
|
|
|
|
|
"$(DESTDIR)$(prefix)/lib/suricata/python/suricata/config/defaults.py"
|
2018-01-09 08:51:26 -05:00
|
|
|
|
|
|
|
|
uninstall-local:
|
2022-05-03 14:34:57 -04:00
|
|
|
rm -rf $(DESTDIR)$(prefix)/lib/suricata/python
|
2018-01-09 08:51:26 -05:00
|
|
|
|
|
|
|
|
clean-local:
|
|
|
|
|
find . -name \*.pyc -print0 | xargs -0 rm -f
|
|
|
|
|
|
2019-03-09 10:00:59 -05:00
|
|
|
endif
|