-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.am
47 lines (36 loc) · 1.57 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
47
include $(top_srcdir)/common.mk
SUBDIRS = . tests
AUTOMAKE_OPTIONS = subdir-objects foreign
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
lib_LTLIBRARIES = libdftw.la
libdftw_la_LDFLAGS = -version-info $(LIBDFTW_SO_VERSION)
libdftw_la_SOURCES = libdftw/dftw.c
libdftw_la_LIBADD = $(libcircle_LIBS)
libdftw_includedir = $(includedir)/
nobase_libdftw_include_HEADERS = libdftw.h
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libdftw.pc
dist_noinst_SCRIPTS = autogen.sh
MAINTAINERCLEANFILES = \
aclocal.m4 config.guess config.xml \
config.h.in config.sub configure install-sh \
ltconfig ltmain.sh missing mkinstalldirs \
stamp-h.in
test: all
mpirun -np 3 ./tests/dftw_test .
distclean-local:
-(cd $(top_srcdir) && rm -rf autom4te*.cache autoscan.*)
-(cd $(top_srcdir) && rm -rf $(PACKAGE)-* libdftw.pc)
mrproper: distclean-local clean
-(cd $(top_srcdir) && rm -rf autom4te.cache config.h config.log)
-(cd $(top_srcdir) && rm -rf config.status libtool stamp-h1)
-(cd $(top_srcdir) && rm -rf auxdir)
-(cd $(top_srcdir) && rm -f configure configure.ac~)
-(cd $(top_srcdir) && rm -f aclocal.m4 config.h.in config.h.in~)
-(cd $(top_srcdir)/m4 && rm -f libtool.m4 ltoptions.m4)
-(cd $(top_srcdir)/m4 && rm -f ltsugar.m4 ltversion.m4)
-(cd $(top_srcdir)/m4 && rm -f lt~obsolete.m4)
-find $(top_srcdir)/ -name "Makefile" -exec rm {} \;
-find $(top_srcdir)/ -name "Makefile.in" -exec rm {} \;
-find $(top_srcdir)/ -name ".dirstamp" -exec rm {} \;
-find $(top_srcdir) -depth -name ".deps" -exec rm -rf {} \;