mirror of https://github.com/OISF/suricata
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
473 B
Makefile
21 lines
473 B
Makefile
LIBS = \
|
|
suricata/__init__.py \
|
|
suricata/config/__init__.py
|
|
|
|
EXTRA_DIST = $(LIBS) suricata/config/defaults.py
|
|
|
|
if HAVE_PYTHON
|
|
|
|
install-exec-local:
|
|
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"
|
|
|
|
uninstall-local:
|
|
rm -rf $(DESTDIR)$(prefix)/lib/suricata/python
|
|
|
|
clean-local:
|
|
find . -name \*.pyc -print0 | xargs -0 rm -f
|
|
|
|
endif
|