-
Notifications
You must be signed in to change notification settings - Fork 8
/
Makefile.am
46 lines (33 loc) · 1.04 KB
/
Makefile.am
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
35
36
37
38
39
40
41
42
43
44
45
46
#############################################################################
##
#W Makefile.am Laurent Bartholdi
##
#Y Copyright (C) 2014-2017, Laurent Bartholdi
##
#############################################################################
ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = \
foreign \
std-options
#AM_DISTCHECK_CONFIGURE_FLAGS =
SUBDIRS = src
EXTRA_DIST =
VERSION:=$(shell grep '^Version :=' PackageInfo.g | cut -f2 -d'"')
LOCALBIN=bin/@GAPARCH@
Changelog:
gitlog-to-changelog > $@
doc: doc/float.xml gap/*.gd
@GAP@ -A makedoc.g
checkblocks:
grep '<#GAPDoc' PackageInfo.g lib/*d | awk -F'"' '{print $$2}' | sort > @@-blocks
grep '<#Include' doc/float.xml | awk -F'"' '{print $$2}' | sort > @@-in
comm -3 @@-blocks @@-in
@rm @@-blocks @@-in
all: all-recursive
mkdir -p bin/@GAPARCH@
if SYS_IS_CYGWIN
cp src/.libs/float.dll bin/@GAPARCH@/float.so
else
cp src/.libs/float.so bin/@GAPARCH@/float.so
endif
#E Makefile.am . . . . . . . . . . . . . . . . . . . . . . . . . . . ends here