ongrep

A cleaned up fork of ngrep for OpenBSD
git clone git://git.sgregoratto.me/ongrep
Log | Files | Refs | README | LICENSE

commit 781010c70f62f8f4dfd3553dc790776b3b3447a2
parent fa70a774cae5aa1867b769ea0994b2cada5944ea
Author: Jordan Ritter <jpr5@darkridge.com>
Date:   Sat, 19 Feb 2005 19:19:30 +0000

clean up pcre and regex targets, and switch pcre from 3.4 to 5.0

Diffstat:
MMakefile.in | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile.in b/Makefile.in @@ -52,7 +52,7 @@ install: $(TARGET) $(INSTALL) -c -m 0644 $(MANPAGE) $(DESTDIR)/$(MANDIR_INSTALL)/$(MANPAGE) pcre: - @cd pcre-3.4 && make $(REGEX_OBJS) && cp -f $(REGEX_OBJS) .. + @cd pcre-5.0 && make $(REGEX_OBJS) && cp -f $(REGEX_OBJS) .. regex: @cd regex-0.12 && make $(REGEX_OBJS) && cp -f $(REGEX_OBJS) .. @@ -69,9 +69,9 @@ distclean: clean clean-$(REGEX_TARGET) rm -f config.status config.cache config.log config.h Makefile .depends clean-pcre: - ( cd pcre-3.4; if [ -f ./Makefile ]; then make distclean; fi ) + cd pcre-5.0 && test -f ./Makefile && make distclean clean-regex: - ( cd regex-0.12; if [ -f ./Makefile ]; then make distclean; fi ) + cd regex-0.12 && test -f ./Makefile && make distclean ngrep.o: ngrep.c ngrep.h