From: hno <> Date: Thu, 23 Feb 2006 22:29:10 +0000 (+0000) Subject: Switch to using awk for the mk-xxx scripts as per squid-dev discussions and X-Git-Tag: SQUID_3_0_PRE4~315 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=543f0514b5c8063b2a480f9045aaad35ddb641dc;p=thirdparty%2Fsquid.git Switch to using awk for the mk-xxx scripts as per squid-dev discussions and contribtions by Christopher Kerr --- 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)