File: autogen.sh

package info (click to toggle)
golly 2.3-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 10,080 kB
  • sloc: cpp: 41,951; python: 6,339; sh: 3,912; perl: 1,172; java: 49; makefile: 47
file content (14 lines) | stat: -rwxr-xr-x 546 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

rm -f sources.am
echo libgolly_a_SOURCES = `ls *.cpp \
	| grep -Ev '^wx|^bgolly|^RuleTableToTree'` >>sources.am
echo golly_SOURCES = wx*.cpp >>sources.am
echo nobase_dist_pkgdata_DATA = `find Help Patterns Rules Scripts -type f \
	| grep -Ev '/CVS|/[.]|[.]pyc$$'` >> sources.am
echo dist_doc_DATA = LICENSE README >> sources.am
echo EXTRA_DIST = BUILD TODO autogen.sh makefile-{gtk,mac,win} CMakeLists.txt \
	Info.plist.in *.{h,rc,ico,icns,xpm,mk} bitmaps/*{.bmp,.xpm} >>sources.am
aclocal -I m4
automake --add-missing --copy
autoconf