File: makemakefile.sh

package info (click to toggle)
gtk-engines-thinice 1.0.3-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 620 kB
  • ctags: 87
  • sloc: sh: 7,275; ansic: 2,225; makefile: 73
file content (15 lines) | stat: -rwxr-xr-x 600 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

THEME="Metal"
FILES="ICON.png README.html"
SUBDIRS="gtk"

echo    'EXTRA_DIST = makemakefile.sh'                   > Makefile.am
echo    'dummy ='                                        >> Makefile.am
echo    'SUBDIRS = '$SUBDIRS                             >> Makefile.am
echo    'themedir = $(datadir)/themes/'$THEME            >> Makefile.am
echo -n 'theme_DATA = '                                  >> Makefile.am
for i in $FILES ; do 
echo -n $i' '                                            >> Makefile.am 
done
echo    ' '                                              >> Makefile.am