File: generate-private-headers

package info (click to toggle)
streamtuner 0.99.99-15
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 5,220 kB
  • ctags: 2,980
  • sloc: ansic: 27,119; sh: 8,206; xml: 4,811; makefile: 444; python: 366
file content (11 lines) | stat: -rwxr-xr-x 148 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

echo -n "private_headers ="

cd ../../src/streamtuner

for f in *.h; do
    echo $f | grep -qe '-api\.h$' || echo -n " $f"
done

echo ""