8 lines
189 B
Plaintext
8 lines
189 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# this file exists because this line is
|
||
|
# too hard to escape correctly in a makefile
|
||
|
|
||
|
egrep -v '^[[:blank:]]*(\#.*)?$' $1 \
|
||
|
| awk '{ print "define(`"$1"_conf'\'',`"$3"'\'')" }'
|