File: Makefile.am

package info (click to toggle)
gap-float 0.7.4%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 628 kB
  • ctags: 611
  • sloc: ansic: 2,537; cpp: 2,010; xml: 184; makefile: 103; sh: 1
file content (34 lines) | stat: -rw-r--r-- 768 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#############################################################################
##
#W Makefile.am                                              Laurent Bartholdi
##
#Y Copyright (C) 2014-2016, Laurent Bartholdi
##
#############################################################################

ACLOCAL_AMFLAGS = -I m4

AUTOMAKE_OPTIONS = \
	foreign \
	std-options

AM_DISTCHECK_CONFIGURE_FLAGS ?= \
	--with-cxsc=no

SUBDIRS = src lib tst

pkgdatadir = @datadir@/gap/pkg/@PACKAGE@

pkgdata_DATA = \
	PackageInfo.g \
	init.g \
	read.g

EXTRA_DIST = \
	$(pkgdata_DATA)

export TAR_OPTIONS = --owner=0 --group=0 --numeric-owner

VERSION:=$(shell grep '^Version :=' PackageInfo.g | cut -f2 -d'"')

#E Makefile.am . . . . . . . . . . . . . . . . . . . . . . . . . . . ends here