source: trunk/examples/app-fermi/octave/Makefile.in @ 1581

Last change on this file since 1581 was 1581, checked in by dkearney, 15 years ago

updates for the rappture objects, object examples, and object apis. small fix for rpunits c interface to check string length. there should probably be more of these checks in the c interface, but units should also be rewritten. added folders to separate out octave2 and octave3 app-fermi examples

File size: 583 bytes
Line 
1
2bindir          = @bindir@
3datadir         = @datadir@
4datarootdir     = @datarootdir@
5exec_prefix     = @exec_prefix@
6includedir      = @includedir@
7libdir          = @libdir@
8mandir          = @mandir@
9prefix          = @prefix@
10srcdir          = @srcdir@
11
12destdir         = $(prefix)/examples/app-fermi/octave
13
14INSTALL         = @INSTALL@
15MKDIR_P         = @MKDIR_P@
16
17all: all_2 all_3
18
19all_2:
20        $(MAKE) -C 2 all
21
22all_3:
23        $(MAKE) -C 3 all
24
25
26install: install_2 install_3
27
28install_2:
29        $(MAKE) -C 2 install
30
31install_3:
32        $(MAKE) -C 3 install
33
34clean:
35
36distclean: clean
37        $(RM) Makefile
38
Note: See TracBrowser for help on using the repository browser.