From 543f0514b5c8063b2a480f9045aaad35ddb641dc Mon Sep 17 00:00:00 2001 From: hno <> Date: Thu, 23 Feb 2006 22:29:10 +0000 Subject: [PATCH] Switch to using awk for the mk-xxx scripts as per squid-dev discussions and contribtions by Christopher Kerr --- src/Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 504f812e70..3e47b54181 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,7 +1,7 @@ # # Makefile for the Squid Object Cache server # -# $Id: Makefile.am,v 1.127 2006/01/25 17:41:23 wessels Exp $ +# $Id: Makefile.am,v 1.128 2006/02/23 15:29:10 hno Exp $ # # Uncomment and customize the following to suit your needs: # @@ -880,10 +880,10 @@ $(OBJS): $(top_srcdir)/include/version.h ../include/autoconf.h snmp_core.o snmp_agent.o: ../snmplib/libsnmp.a $(top_srcdir)/include/cache_snmp.h globals.cc: globals.h mk-globals-c.pl - $(PERL) $(srcdir)/mk-globals-c.pl < $(srcdir)/globals.h > $@ + awk -f $(srcdir)/mk-globals-c.awk < $(srcdir)/globals.h > $@ string_arrays.c: enums.h mk-string-arrays.pl - $(PERL) $(srcdir)/mk-string-arrays.pl < $(srcdir)/enums.h > $@ + awk -f $(srcdir)/mk-string-arrays.awk < $(srcdir)/enums.h > $@ cache_diff: cache_diff.o debug.o globals.o store_key_md5.o $(CC) -o $@ $(LDFLAGS) $@.o debug.o globals.o store_key_md5.o $(STD_APP_LIBS) -- 2.47.3