Use recursive make for the install process so it
is executed in a predictable order.
Addresses issue:
https://redmine.openinfosecfoundation.org/issues/1470
which triggered on OSX/macOS.
install-data-am:
@echo "Run 'make install-conf' if you want to install initial configuration files. Or 'make install-full' to install configuration and rules";
-install-full: install install-conf install-rules
+install-full:
+ $(MAKE) install
+ $(MAKE) install-conf
+ $(MAKE) install-rules
install-conf:
install -d "$(DESTDIR)$(e_sysconfdir)"