forked from scafacos/scafacos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
38 lines (29 loc) · 1.07 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
###################################################
# Makefile for the ScaFaCos fcs interface #
# #
###################################################
# Traverse these subdirectories, the current one first (for config.h).
SUBDIRS = . lib src package test python
if ENABLE_DOC
SUBDIRS += doc
endif
DIST_SUBDIRS = $(SUBDIRS)
# Let aclocal find macro files in the m4 directory.
ACLOCAL_AMFLAGS = -I m4
# Generated public headers that get installed.
nodist_include_HEADERS = fcs_config.h fcs_fconfig.h
# These files are not automatically distributed.
EXTRA_DIST = COPYING.GPL COPYING.LGPL
EXTRA_DIST += build-aux/fortran-depcomp
EXTRA_DIST += examples/Makefile examples/fmm_test.F90
# Remove files created during configure.
DISTCLEANFILES = fcs-package.info
#################################################################
# Documentation
#################################################################
if ENABLE_DOC
.PHONY: FORCE doc manual doc-upload
doc manual doc-upload: FORCE
cd doc; $(MAKE) --print-directory $@
FORCE:
endif