+ this is a small script for helping TargetWizard auto-generate

busybox.defs.h
This commit is contained in:
John Beppu 2000-02-23 18:17:35 +00:00
parent f7c49ef2d1
commit dc75a739ac

23
define.sh Executable file
View File

@ -0,0 +1,23 @@
#!/bin/sh
# define.sh - creates an include file full of #defines
#
# SYNOPSIS
#
# define.sh POSIX_ME_HARDER ...
#
# <GPL>
for i ; do
case $1 in
!!*!!)
echo "// #define" `echo $1 | sed 's/^!!\(.*\)!!$/\1/'`
shift
;;
*)
echo "#define $1"
shift
;;
esac
done
# </GPL>