libs-steptalk/Modules/SQLClient/create_constants.awk
Wolfgang Lux 43359d0766 Add SQLClient bundle to StepTalk. Must be requested explicitly by
adding sqlclient=yes to the make command line.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/steptalk/trunk@35749 72102866-910b-0410-8b05-ffd578937521
2012-10-26 16:46:43 +00:00

5 lines
121 B
Awk

($0 !~ /^[\t ]*#.*$/) && ($0 !~ /^[\t ]*$/) && (NF == 2) {
printf " ADD_%s_OBJECT(%s,@\"%s\");\n", $1, $2, $2
}