diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-12-06 06:35:52 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-12-06 06:35:52 +0200 |
commit | d0d7d738e79829536176cb4763ec2d0df799ddfc (patch) | |
tree | e4e6373020c419879918aa24a3989b7a709669fc /Makefile.in | |
parent | bbf10e4b72801d9c52aad4140dda110795a5af78 (diff) | |
parent | 70c5bdd817c0dc7cbdd95f9e2c04639ffecb1e61 (diff) | |
download | egawk-d0d7d738e79829536176cb4763ec2d0df799ddfc.tar.gz egawk-d0d7d738e79829536176cb4763ec2d0df799ddfc.tar.bz2 egawk-d0d7d738e79829536176cb4763ec2d0df799ddfc.zip |
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/Makefile.in b/Makefile.in index 9a1a9053..393d063b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -269,6 +269,7 @@ DIST_TARGETS = dist-lzip dist-xz dist-gzip distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' +distcleancheck_listfiles = find . -type f -print # Directory for gawk's data files. Automake supplies datadir. pkgdatadir = $(datadir)/awk @@ -431,17 +432,10 @@ EXTRA_DIST = \ regex_internal.c \ regex_internal.h \ regexec.c \ - version.in \ vms \ ylwrap -# It's OK for the generated file `version.c' not to be removed by -# "make distclean". -distcleancheck_listfiles = \ - find . -type f -print | grep -v '^\./version\.c$$' - - # The order to do things in. # Build explicitly in "." in order to build gawk first, so # that `make check' without a prior `make' works. @@ -517,7 +511,6 @@ DEFLIBPATH = "\"$(pkgextensiondir)\"" # Get rid of core files when cleaning CLEANFILES = core core.* -MAINTAINERCLEANFILES = version.c # We want hard links for install-exec-hook, below LN = ln @@ -1026,7 +1019,6 @@ maintainer-clean-generic: @echo "it deletes files that may require special tools to rebuild." -rm -f awkgram.c -rm -f command.c - -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-binPROGRAMS clean-generic mostlyclean-am @@ -1167,9 +1159,6 @@ awkgram.c: awkgram.y if cmp -s y.tab.h $*.h; then rm -f y.tab.h; else mv y.tab.h $*.h; fi; \ else :; fi -version.c: config.status version.in - $(SHELL) ./config.status --file=version.c:version.in - command.c: command.y $(YACC) -p zz $< sed 's/parse error/syntax error/g' < y.tab.c | awk -f $(srcdir)/bisonfix.awk command > $*.c && rm y.tab.c |