diff options
author | Roland McGrath <roland@redhat.com> | 1995-03-08 00:11:27 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1995-03-08 00:11:27 +0000 |
commit | 1280ee49bbead93ee57b85fbd70c8904cb864d06 (patch) | |
tree | 147b57afce058c9d3eecb82ca971ce86e3660bc4 | |
parent | 8fc1187283b282f6121830e111ddaa292870f921 (diff) | |
download | gunmake-1280ee49bbead93ee57b85fbd70c8904cb864d06.tar.gz |
(configure, config.h.in): Uncomment these rules.
Commit the files to CVS if there is a CVS directory.
-rw-r--r-- | compatMakefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/compatMakefile b/compatMakefile index 188fb30..bf46bdb 100644 --- a/compatMakefile +++ b/compatMakefile @@ -265,11 +265,12 @@ stamp-config: config.status $(srcdir)/config.h.in $(SHELL) config.status touch stamp-config -# These rules cause too much trouble. -#configure: configure.in -# autoconf $(ACFLAGS) -#config.h.in: configure.in -# autoheader $(ACFLAGS) +configure: configure.in aclocal.m4 + cd $(srcdir) && autoconf $(ACFLAGS) + test -d CVS && cvs commit -m'autoconf $(ACFLAGS)' $@ +config.h.in: configure.in aclocal.m4 + cd $(srcdir) && autoheader $(ACFLAGS) + test -d CVS && cvs commit -m'autoheader $(ACFLAGS)' $@ # This tells versions [3.59,3.63) of GNU make not to export all variables. .NOEXPORT: |