Last change
on this file since 5799 was
5799,
checked in by clarksm, 8 years ago
|
Added rpExec functions to run external processes with Matlab and Octave.
|
File size:
1.7 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 | srcdir = @srcdir@ |
---|
11 | |
---|
12 | destdir = $(libdir)/octave3 |
---|
13 | |
---|
14 | INSTALL = @INSTALL@ |
---|
15 | MKDIR_P = @MKDIR_P@ |
---|
16 | VPATH = $(srcdir)/../src |
---|
17 | RM = rm -f |
---|
18 | |
---|
19 | OCT = @MKOCTFILE3@ |
---|
20 | INCLUDES = \ |
---|
21 | -I$(srcdir) \ |
---|
22 | -I$(srcdir)/../../../src/core \ |
---|
23 | -I$(prefix)/include |
---|
24 | DEFINES = |
---|
25 | LIBS = -L../../../src/core -lrappture |
---|
26 | OCT_FLAGS = $(INCLUDES) $(DEFINES) |
---|
27 | |
---|
28 | OBJS = \ |
---|
29 | rpAddPresets.oct \ |
---|
30 | rpUtilsProgress.oct \ |
---|
31 | rpLib.oct \ |
---|
32 | rpLibChildrenByType.oct \ |
---|
33 | rpLibChildren.oct \ |
---|
34 | rpLibElementAsComp.oct \ |
---|
35 | rpLibElementAsId.oct \ |
---|
36 | rpLibElementAsObject.oct \ |
---|
37 | rpLibElementAsType.oct \ |
---|
38 | rpLibElement.oct \ |
---|
39 | rpLibGet.oct \ |
---|
40 | rpLibGetData.oct \ |
---|
41 | rpLibGetString.oct \ |
---|
42 | rpLibGetDouble.oct \ |
---|
43 | rpLibNodeComp.oct \ |
---|
44 | rpLibNodeId.oct \ |
---|
45 | rpLibNodeType.oct \ |
---|
46 | rpLibPut.oct \ |
---|
47 | rpLibPutDouble.oct \ |
---|
48 | rpLibPutString.oct \ |
---|
49 | rpLibPutFile.oct \ |
---|
50 | rpLibResult.oct \ |
---|
51 | rpLibXml.oct \ |
---|
52 | rpUnitsConvert.oct \ |
---|
53 | rpUnitsConvertDbl.oct \ |
---|
54 | rpUnitsConvertStr.oct \ |
---|
55 | rpUnitsConvertObjDbl.oct \ |
---|
56 | rpUnitsConvertObjStr.oct \ |
---|
57 | rpUnitsDefineUnit.oct \ |
---|
58 | rpUnitsFind.oct \ |
---|
59 | rpUnitsGetBasis.oct \ |
---|
60 | rpUnitsGetExponent.oct \ |
---|
61 | rpUnitsGetUnits.oct \ |
---|
62 | rpUnitsGetUnitsName.oct \ |
---|
63 | rpExec.oct |
---|
64 | |
---|
65 | .PHONY: all install clean distclean |
---|
66 | |
---|
67 | all: $(OBJS) |
---|
68 | |
---|
69 | .SUFFIXES: .cc .o .oct |
---|
70 | |
---|
71 | .o.oct: |
---|
72 | $(OCT) $(OCT_FLAGS) $< -o $@ $(LIBS) |
---|
73 | |
---|
74 | .cc.o: |
---|
75 | $(OCT) $(OCT_FLAGS) -c $< -o $@ |
---|
76 | |
---|
77 | install: all |
---|
78 | $(MKDIR_P) -m 0755 $(destdir) |
---|
79 | for i in $(OBJS) ; do \ |
---|
80 | $(INSTALL) -m 0444 $$i $(destdir) ; \ |
---|
81 | done |
---|
82 | |
---|
83 | clean: |
---|
84 | $(RM) $(OBJS) |
---|
85 | |
---|
86 | distclean: clean |
---|
87 | $(RM) Makefile *~ |
---|
88 | |
---|
Note: See
TracBrowser
for help on using the repository browser.