96cdbeff6a
This prevents autoheader from being rerun by make if somebody changes configure.ac or aclocal.m4 and runs autogen.sh. Suggested by Christian Franke <Christian.Franke@t-online.de>
12 lines
166 B
Bash
12 lines
166 B
Bash
#! /bin/sh
|
|
|
|
set -e
|
|
|
|
autoconf
|
|
autoheader
|
|
echo timestamp > stamp-h.in
|
|
for rmk in conf/*.rmk; do
|
|
ruby genmk.rb < $rmk > `echo $rmk | sed 's/\.rmk$/.mk/'`
|
|
done
|
|
|
|
exit 0
|