forked from gap-packages/json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
36 lines (29 loc) · 778 Bytes
/
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
#
# json: Reading and Writing JSON
#
# This file is part of the build system of a GAP kernel extension.
# Requires automake.
#
ACLOCAL_AMFLAGS = -I m4
BINARCHDIR = bin/$(GAPARCH)
GAPINSTALLLIB = $(abs_top_srcdir)/$(BINARCHDIR)/json.so
lib_LTLIBRARIES = json.la
json_la_SOURCES = src/json.cc
json_la_LDFLAGS = -module -avoid-version
if SYS_IS_CYGWIN
json_la_LDFLAGS += -no-undefined -version-info 0:0:0 -Wl,$(GAPROOT)/bin/$(GAPARCH)/gap.dll
endif
all-local: json.la
$(mkdir_p) $(top_srcdir)/$(BINARCHDIR)
if SYS_IS_CYGWIN
cp .libs/json.dll $(GAPINSTALLLIB)
else
cp .libs/json.so $(GAPINSTALLLIB)
endif
@echo "SUCCESS!"
distclean-local:
rm -rf bin/*
(cd doc ; ./clean)
doc: doc/manual.six
doc/manual.six: doc/*.xml PackageInfo.g
($(GAPROOT)/bin/gap.sh -A makedoc.g)