-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMakefile.am
40 lines (31 loc) · 1.06 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
SUBDIRS = src doc
# DIST_SUBDIRS = src doc
ACLOCAL_AMFLAGS = -I m4
dist_doc_DATA = AUTHORS ChangeLog README TODO \
doc/wasora.texi doc/wasora.info doc/logo.svg doc/wasora.xml doc/reference.md
dist_man_MANS = doc/wasora.1
EXTRA_DIST = examples doc locateruntest.sh \
src/version.sh
# TESTS = examples/test-fibonacci.sh \
# examples/test-pi.sh \
# examples/test-interp1d.sh \
# examples/test-histogram.sh \
# examples/test-logistic.sh \
# examples/test-lorenz.sh \
# examples/test-mathace.sh \
# examples/test-fsm.sh \
# examples/test-io.sh \
# examples/test-roessler.sh
TESTS = tests/fibonacci.sh \
tests/pi.sh \
tests/interp1d.sh \
tests/lorenz.sh
all-local:
cp -r src/wasora$(EXEEXT) .
# rm -f src/version.$(OBJEXT) src/version.h src/version.lo src/.lib/version.$(OBJEXT)
@echo
@echo Happy engineering hacking with wasora!
@echo
clean-local:
rm -f wasora$(EXEEXT) src/.libs/*
rm -f `ls examples/*.dat | grep -v binding | grep -v histogram-samples`