File: autogen.sh

package info (click to toggle)
golly 3.2-2
  • links: PTS
  • area: main
  • in suites: buster
  • size: 19,516 kB
  • sloc: cpp: 69,819; ansic: 25,894; python: 7,921; sh: 4,267; objc: 3,721; java: 2,781; xml: 1,362; makefile: 530; perl: 69
file content (17 lines) | stat: -rwxr-xr-x 673 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash -e

rm -f sources.am
echo nodist_liblua_a_SOURCES = ../../lua/*.{h,hpp,c} >>sources.am
echo libgolly_a_SOURCES = ../../gollybase/*.{h,cpp} >>sources.am
echo golly_SOURCES = ../../gui-wx/*.{h,cpp} >>sources.am
echo 'gollydatadir = $(pkgdatadir)/Patterns/Life/' >>sources.am
echo nobase_dist_gollydata_DATA = `find ../../{Help,Patterns,Rules,Scripts} -type f | sort` >>sources.am
echo EXTRA_DIST = \
	../../lua \
	../../gui-wx/{makefile-{gtk,mac,win},Info.plist.in,*.mk,*.rc,configure/autogen.sh,icons,bitmaps} \
	../../gui-common $(find ../../gui-{android,ios,web} -type f | sort) \
	../../docs >>sources.am

aclocal -I m4
automake --add-missing --copy
autoconf