4 exec_prefix = @exec_prefix@
5 BINDIR = ${exec_prefix}/@bindir@
13 LOADLIBS = routines/libddtsa.a -lm
15 # list of executables we want to produce
16 ALL = poincare extrema rescale recurr corr mutual false_nearest \
17 lyap_r lyap_k lyap_spec d2 av-d2 makenoise nrlazy low121 \
18 lzo-test lfo-run lfo-test rbf polynom polyback polynomp polypar \
19 ar-model mem_spec pca ghkss lfo-ar xzero xcor boxcount fsle \
20 resample histogram nstat_z sav_gol delay lzo-gm arima-model \
26 (cd routines && $(MAKE))
28 $(ALL): routines/libddtsa.a *.c
29 -$(CC) $(CFLAGS) $(COPTS) -o $@ $@.c $(LOADLIBS)
32 -for bin in $(ALL); do $(INSTALL) $$bin $(BINDIR); done
37 -(cd routines && $(MAKE) clean)
40 -@for bin in $(ALL); do \
41 test -z "`$$bin -h 2>&1 | grep Usage`" \
42 && echo $$bin "(Dresden C)" >> ../missing.log; \
43 $$bin -h 2>&1 | cat >> ../install.log; \
47 -@for bin in $(ALL); do rm -f $(BINDIR)/$$bin; done