mirror of
https://github.com/clearlinux/tallow.git
synced 2026-08-19 11:05:48 +00:00
e296f501c7
This is a much more reliable method to extract the IP address from the log entries, and allows us to consolidate 2 matches into a single operation. Once matched, we extract the IP substring and pass it to `find()` as usual. We can add more regexes later if that is useful.
27 lines
661 B
Makefile
27 lines
661 B
Makefile
|
|
AM_CFLAGS = -g $(PCRE_CFLAGS) $(LIBSYSTEMD_CFLAGS) -Wall -Wno-uninitialized -W -D_FORTIFY_SOURCE=2
|
|
|
|
systemdsystemunitdir = @SYSTEMD_SYSTEMUNITDIR@
|
|
systemdsystemunit_DATA = tallow.service
|
|
|
|
sbin_PROGRAMS = tallow
|
|
tallow_SOURCES = tallow.c
|
|
tallow_LDADD = $(PCRE_LIBS) $(LIBSYSTEMD_LIBS)
|
|
|
|
EXTRA_DIST = AUTHORS COPYING INSTALL tallow.service.in tallow.1.md
|
|
|
|
dist_man_MANS = tallow.1 tallow.conf.5
|
|
|
|
dist_doc_DATA = tallow.conf
|
|
|
|
DISTCHECK_CONFIGURE_FLAGS = \
|
|
--with-systemdsystemunitdir=$(DESTDIR)$(SYSTEMDSYSTEMUNITDIR)
|
|
|
|
docs: tallow.1 tallow.conf.5
|
|
tallow.conf.5:
|
|
ronn -r tallow.conf.5.md --pipe > tallow.conf.5
|
|
|
|
tallow.1:
|
|
ronn -r tallow.1.md --pipe > tallow.1
|
|
|