libs-steptalk/Modules/WebServices/create_constants.awk
Wolfgang Lux 903e11ce23 Add WebServices bundle to StepTalk. Must be requested explicitly by
adding webservices=yes to the make command line.


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

5 lines
121 B
Awk

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