mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-06 12:36:58 +00:00
14 lines
207 B
Plaintext
14 lines
207 B
Plaintext
![]() |
#!/bin/sh
|
||
|
|
||
|
cat << END
|
||
|
/*
|
||
|
* buildopts.h
|
||
|
* Automatically generated
|
||
|
*/
|
||
|
|
||
|
END
|
||
|
TMP=`grep MENUSELECT_CFLAGS menuselect.makeopts | sed s/MENUSELECT_CFLAGS\=//g`
|
||
|
for x in ${TMP}; do
|
||
|
echo "#define ${x}"
|
||
|
done
|