Last change
on this file since 2709 was
2709,
checked in by dkearney, 11 years ago
|
adding R bindings with app-fermi example.
|
File size:
1.4 KB
|
Line | |
---|
1 | |
---|
2 | bindir = @bindir@ |
---|
3 | datadir = @datadir@ |
---|
4 | datarootdir = @datarootdir@ |
---|
5 | exec_prefix = @exec_prefix@ |
---|
6 | includedir = @includedir@ |
---|
7 | libdir = @libdir@ |
---|
8 | mandir = @mandir@ |
---|
9 | prefix = @prefix@ |
---|
10 | |
---|
11 | INSTALL = @INSTALL@ |
---|
12 | INSTALL_PROGRAM = ${INSTALL} -m 755 |
---|
13 | INSTALL_DATA = ${INSTALL} -m 644 |
---|
14 | INSTALL_SCRIPT = ${INSTALL} -m 644 |
---|
15 | |
---|
16 | F77 = @F77@ |
---|
17 | CC = @CC@ |
---|
18 | CXX = @CXX@ |
---|
19 | RUBY = @RUBY@ |
---|
20 | PERL = @PERL@ |
---|
21 | TCLSH = @TCLSH@ |
---|
22 | PYTHON = @PYTHON@ |
---|
23 | MEX = @MEX@ |
---|
24 | MKOCTFILE2 = @MKOCTFILE2@ |
---|
25 | MKOCTFILE3 = @MKOCTFILE3@ |
---|
26 | OCTAVE = $(MKOCTFILE2) $(MKOCTFILE3) |
---|
27 | JAVAC = @JAVAC@ |
---|
28 | R = @R@ |
---|
29 | |
---|
30 | .PHONY: tcl cee fortran octave matlab perl python ruby java 2.0 wrapper |
---|
31 | |
---|
32 | LANGS = cee tcl wrapper 2.0 |
---|
33 | ifneq ($(F77),) |
---|
34 | LANGS += fortran |
---|
35 | endif |
---|
36 | ifneq ($(OCTAVE),) |
---|
37 | LANGS += octave |
---|
38 | endif |
---|
39 | ifneq ($(MEX),) |
---|
40 | LANGS += matlab |
---|
41 | endif |
---|
42 | ifneq ($(PERL),) |
---|
43 | LANGS += perl |
---|
44 | endif |
---|
45 | ifneq ($(PYTHON),) |
---|
46 | LANGS += python |
---|
47 | endif |
---|
48 | ifneq ($(RUBY),) |
---|
49 | LANGS += ruby |
---|
50 | endif |
---|
51 | ifneq ($(JAVAC),) |
---|
52 | LANGS += java |
---|
53 | endif |
---|
54 | ifneq ($(R),) |
---|
55 | LANGS += R |
---|
56 | endif |
---|
57 | |
---|
58 | all: |
---|
59 | for i in $(LANGS) ; do \ |
---|
60 | $(MAKE) -C $$i all || exit 1 ; \ |
---|
61 | done |
---|
62 | |
---|
63 | install: |
---|
64 | for i in $(LANGS) ; do \ |
---|
65 | $(MAKE) -C $$i install || exit 1 ; \ |
---|
66 | done |
---|
67 | |
---|
68 | clean: |
---|
69 | for i in $(LANGS) ; do \ |
---|
70 | $(MAKE) -C $$i clean || exit 1 ; \ |
---|
71 | done |
---|
72 | |
---|
73 | distclean: |
---|
74 | for i in $(LANGS) ; do \ |
---|
75 | $(MAKE) -c $$i distclean || exit 1 ; \ |
---|
76 | done |
---|
77 | $(RM) Makefile |
---|
Note: See
TracBrowser
for help on using the repository browser.