Change Eclipse configuration
[jabaws.git] / website / archive / binaries / mac / src / disembl / Tisean_3.0.1 / source_c / Makefile.in
1 SHELL = /bin/sh
2
3 prefix = @prefix@
4 exec_prefix = @exec_prefix@
5 BINDIR = ${exec_prefix}/@bindir@
6
7 CC = @CC@
8 CFLAGS = @CFLAGS@
9 AR = @AR@
10 ARFLAGS = @ARFLAGS@
11 INSTALL = @INSTALL@
12
13 LOADLIBS = routines/libddtsa.a -lm
14
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 \
21            lzo-run
22
23 all: $(ALL) 
24
25 routines/libddtsa.a:
26         (cd routines && $(MAKE))
27
28 $(ALL): routines/libddtsa.a *.c
29         -$(CC) $(CFLAGS) $(COPTS) -o $@ $@.c $(LOADLIBS)
30
31 install: all
32         -for bin in $(ALL); do $(INSTALL) $$bin $(BINDIR); done
33
34 clean:
35         @rm -f *.o *~ #*#
36         @rm -f $(ALL)
37         -(cd routines && $(MAKE) clean)
38
39 missing:
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; \
44           done; :
45
46 uninstall:
47         -@for bin in $(ALL); do rm -f $(BINDIR)/$$bin; done