ongrep

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

commit 81c0710a7e01bd2e5973d3f6a6103292118b5da3
parent afb853c021a8cd8289bf5a2312be44237d011005
Author: Jordan Ritter <jpr5@darkridge.com>
Date:   Wed, 15 Nov 2006 01:22:20 +0000

fixup of the stupid clean targets.  this should be the end of it.

Diffstat:
Mregex-0.12/Makefile.in | 28++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)

diff --git a/regex-0.12/Makefile.in b/regex-0.12/Makefile.in @@ -51,16 +51,6 @@ default all:: regex.o regex.o: regex.c regex.h $(CC) $(CFLAGS) $(CPPFLAGS) $(DEFS) -I. -I$(srcdir) -c $< -clean mostlyclean:: - rm -f *.o - -# (6/26/01) jpr5: moved this to end of other distclean target below -#distclean:: clean -# rm -f Makefile config.status - -extraclean:: distclean - rm -f patch* *~* *\#* *.orig *.rej *.bak core a.out - configure: configure.in autoconf @@ -73,11 +63,21 @@ Makefile: Makefile.in config.status makeargs = $(MFLAGS) CPPFLAGS='$(CPPFLAGS)' CFLAGS='$(CFLAGS)' CC='$(CC)' \ DEFS='$(DEFS)' LDFLAGS='$(LDFLAGS)' LOADLIBES='$(LOADLIBES)' -default all install \ -mostlyclean clean distclean extraclean realclean \ -TAGS check:: +default all install TAGS check:: + for d in $(subdirs); do (cd $$d; $(MAKE) $(makeargs) $@); done + +# 11/15/06 jpr5: effort to force this makefile to clean up completely +# re-organized the clean statements +# added config.cache and config.log to targets + +clean mostlyclean: + rm -f *.o + for d in $(subdirs); do (cd $$d; $(MAKE) $(makeargs) $@); done + +extraclean realclean distclean: + rm -f patch* *~* *\#* *.orig *.rej *.bak core a.out + rm -f Makefile config.status config.cache config.log regex.o for d in $(subdirs); do (cd $$d; $(MAKE) $(makeargs) $@); done - rm -f Makefile config.status regex.o .PHONY: install mostlyclean clean distclean extraclean realclean TAGS check