From 2896480c4918f2accccb8301bec457a7bff7377e Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sat, 19 Jan 2008 17:08:39 -0600 Subject: Zap toys/Config.in and instead create generated/Config.in from contents of toys/*.c. Move relevant info into comment at the top of each toys/*.c. Also convert more of Makefile into a thin wrapper around shell scripts that actually do the work. (Makefile is only still there for the user interface.) --- scripts/genconfig.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 scripts/genconfig.sh (limited to 'scripts/genconfig.sh') diff --git a/scripts/genconfig.sh b/scripts/genconfig.sh new file mode 100755 index 00000000..59c63c5b --- /dev/null +++ b/scripts/genconfig.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +mkdir -p generated + +function genconfig() +{ + for i in $(echo toys/*.c | sort) + do + # Grab the config block for Config.in + echo "# $i" + sed -n '/^\*\//q;/^config [A-Z]/,$p' $i || exit 1 + echo + done +} + +genconfig > generated/Config.in -- cgit v1.2.3