symengine 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CMakeLists.txt +17 -0
- data/Gemfile +4 -0
- data/LICENSE +1 -76
- data/README.md +29 -11
- data/cmake/FindRuby.cmake +286 -0
- data/ext/symengine/CMakeLists.txt +26 -0
- data/ext/symengine/extconf.rb +15 -0
- data/ext/symengine/ruby_basic.c +254 -0
- data/ext/symengine/ruby_basic.h +53 -0
- data/ext/symengine/ruby_integer.c +8 -0
- data/ext/symengine/ruby_integer.h +8 -0
- data/ext/symengine/ruby_rational.c +23 -0
- data/ext/symengine/ruby_rational.h +8 -0
- data/ext/symengine/ruby_symbol.c +13 -0
- data/ext/symengine/ruby_symbol.h +8 -0
- data/ext/symengine/symengine.c +49 -0
- data/ext/symengine/symengine.h +15 -0
- data/ext/symengine/symengine_macros.c +49 -0
- data/ext/symengine/symengine_macros.h +21 -0
- data/spec/arit_spec.rb +146 -0
- data/spec/basic_spec.rb +217 -0
- data/spec/integer_spec.rb +56 -0
- data/spec/rational_spec.rb +51 -0
- data/spec/spec_helper.rb +96 -0
- data/spec/symbol_spec.rb +20 -0
- data/symengine.gemspec +19 -0
- metadata +29 -26
- data/lib/symengine/CMakeFiles/CMakeDirectoryInformation.cmake +0 -16
- data/lib/symengine/CMakeFiles/progress.marks +0 -1
- data/lib/symengine/CMakeFiles/symengine_ruby.dir/C.includecache +0 -138
- data/lib/symengine/CMakeFiles/symengine_ruby.dir/DependInfo.cmake +0 -33
- data/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_basic.c.o +0 -0
- data/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_integer.c.o +0 -0
- data/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_rational.c.o +0 -0
- data/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_symbol.c.o +0 -0
- data/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/symengine.c.o +0 -0
- data/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/symengine_macros.c.o +0 -0
- data/lib/symengine/CMakeFiles/symengine_ruby.dir/build.make +0 -241
- data/lib/symengine/CMakeFiles/symengine_ruby.dir/cmake_clean.cmake +0 -15
- data/lib/symengine/CMakeFiles/symengine_ruby.dir/depend.internal +0 -94
- data/lib/symengine/CMakeFiles/symengine_ruby.dir/depend.make +0 -94
- data/lib/symengine/CMakeFiles/symengine_ruby.dir/flags.make +0 -8
- data/lib/symengine/CMakeFiles/symengine_ruby.dir/link.txt +0 -1
- data/lib/symengine/CMakeFiles/symengine_ruby.dir/progress.make +0 -7
- data/lib/symengine/CTestTestfile.cmake +0 -6
- data/lib/symengine/Makefile +0 -347
- data/lib/symengine/cmake_install.cmake +0 -34
- data/lib/symengine/symengine.so +0 -0
@@ -1,8 +0,0 @@
|
|
1
|
-
# CMAKE generated file: DO NOT EDIT!
|
2
|
-
# Generated by "Unix Makefiles" Generator, CMake Version 2.8
|
3
|
-
|
4
|
-
# compile C with /usr/bin/cc
|
5
|
-
C_FLAGS = -g -fPIC -I/home/abinashmeher999/gsoc/symengine/symengine/ruby/ext/symengine -I/home/abinashmeher999/gsoc/symengine/symengine/catch -I/home/abinashmeher999/gsoc/symengine -I/home/abinashmeher999/gsoc/symengine/symengine/teuchos -I/home/abinashmeher999/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0 -I/home/abinashmeher999/.rvm/rubies/ruby-2.2.0/include/ruby-2.2.0/x86_64-linux
|
6
|
-
|
7
|
-
C_DEFINES = -Dsymengine_ruby_EXPORTS
|
8
|
-
|
@@ -1 +0,0 @@
|
|
1
|
-
/usr/bin/c++ -fPIC -std=c++0x -Wall -Wextra -fPIC -g -Wno-unused-parameter -ggdb -shared -Wl,-soname,symengine.so -o symengine.so CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_basic.c.o CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_symbol.c.o CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_integer.c.o CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_rational.c.o CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/symengine_macros.c.o CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/symengine.c.o ../../../libsymengine.so ../../../teuchos/libteuchos.a -lgmpxx -lgmp -lbfd /home/abinashmeher999/.rvm/rubies/ruby-2.2.0/lib/libruby.so -Wl,-rpath,/home/abinashmeher999/gsoc/symengine/symengine:/home/abinashmeher999/.rvm/rubies/ruby-2.2.0/lib
|
@@ -1,6 +0,0 @@
|
|
1
|
-
# CMake generated Testfile for
|
2
|
-
# Source directory: /home/abinashmeher999/gsoc/symengine/symengine/ruby/lib/symengine
|
3
|
-
# Build directory: /home/abinashmeher999/gsoc/symengine/symengine/ruby/lib/symengine
|
4
|
-
#
|
5
|
-
# This file includes the relevant testing commands required for
|
6
|
-
# testing this directory and lists subdirectories to be tested as well.
|
data/lib/symengine/Makefile
DELETED
@@ -1,347 +0,0 @@
|
|
1
|
-
# CMAKE generated file: DO NOT EDIT!
|
2
|
-
# Generated by "Unix Makefiles" Generator, CMake Version 2.8
|
3
|
-
|
4
|
-
# Default target executed when no arguments are given to make.
|
5
|
-
default_target: all
|
6
|
-
.PHONY : default_target
|
7
|
-
|
8
|
-
#=============================================================================
|
9
|
-
# Special targets provided by cmake.
|
10
|
-
|
11
|
-
# Disable implicit rules so canonical targets will work.
|
12
|
-
.SUFFIXES:
|
13
|
-
|
14
|
-
# Remove some rules from gmake that .SUFFIXES does not remove.
|
15
|
-
SUFFIXES =
|
16
|
-
|
17
|
-
.SUFFIXES: .hpux_make_needs_suffix_list
|
18
|
-
|
19
|
-
# Suppress display of executed commands.
|
20
|
-
$(VERBOSE).SILENT:
|
21
|
-
|
22
|
-
# A target that is always out of date.
|
23
|
-
cmake_force:
|
24
|
-
.PHONY : cmake_force
|
25
|
-
|
26
|
-
#=============================================================================
|
27
|
-
# Set environment variables for the build.
|
28
|
-
|
29
|
-
# The shell in which to execute make rules.
|
30
|
-
SHELL = /bin/sh
|
31
|
-
|
32
|
-
# The CMake executable.
|
33
|
-
CMAKE_COMMAND = /usr/bin/cmake
|
34
|
-
|
35
|
-
# The command to remove a file.
|
36
|
-
RM = /usr/bin/cmake -E remove -f
|
37
|
-
|
38
|
-
# Escaping for special characters.
|
39
|
-
EQUALS = =
|
40
|
-
|
41
|
-
# The program to use to edit the cache.
|
42
|
-
CMAKE_EDIT_COMMAND = /usr/bin/ccmake
|
43
|
-
|
44
|
-
# The top-level source directory on which CMake was run.
|
45
|
-
CMAKE_SOURCE_DIR = /home/abinashmeher999/gsoc/symengine
|
46
|
-
|
47
|
-
# The top-level build directory on which CMake was run.
|
48
|
-
CMAKE_BINARY_DIR = /home/abinashmeher999/gsoc/symengine
|
49
|
-
|
50
|
-
#=============================================================================
|
51
|
-
# Targets provided globally by CMake.
|
52
|
-
|
53
|
-
# Special rule for the target edit_cache
|
54
|
-
edit_cache:
|
55
|
-
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake cache editor..."
|
56
|
-
/usr/bin/ccmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
57
|
-
.PHONY : edit_cache
|
58
|
-
|
59
|
-
# Special rule for the target edit_cache
|
60
|
-
edit_cache/fast: edit_cache
|
61
|
-
.PHONY : edit_cache/fast
|
62
|
-
|
63
|
-
# Special rule for the target install
|
64
|
-
install: preinstall
|
65
|
-
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
|
66
|
-
/usr/bin/cmake -P cmake_install.cmake
|
67
|
-
.PHONY : install
|
68
|
-
|
69
|
-
# Special rule for the target install
|
70
|
-
install/fast: preinstall/fast
|
71
|
-
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..."
|
72
|
-
/usr/bin/cmake -P cmake_install.cmake
|
73
|
-
.PHONY : install/fast
|
74
|
-
|
75
|
-
# Special rule for the target install/local
|
76
|
-
install/local: preinstall
|
77
|
-
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..."
|
78
|
-
/usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake
|
79
|
-
.PHONY : install/local
|
80
|
-
|
81
|
-
# Special rule for the target install/local
|
82
|
-
install/local/fast: install/local
|
83
|
-
.PHONY : install/local/fast
|
84
|
-
|
85
|
-
# Special rule for the target list_install_components
|
86
|
-
list_install_components:
|
87
|
-
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\""
|
88
|
-
.PHONY : list_install_components
|
89
|
-
|
90
|
-
# Special rule for the target list_install_components
|
91
|
-
list_install_components/fast: list_install_components
|
92
|
-
.PHONY : list_install_components/fast
|
93
|
-
|
94
|
-
# Special rule for the target rebuild_cache
|
95
|
-
rebuild_cache:
|
96
|
-
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
|
97
|
-
/usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
|
98
|
-
.PHONY : rebuild_cache
|
99
|
-
|
100
|
-
# Special rule for the target rebuild_cache
|
101
|
-
rebuild_cache/fast: rebuild_cache
|
102
|
-
.PHONY : rebuild_cache/fast
|
103
|
-
|
104
|
-
# Special rule for the target test
|
105
|
-
test:
|
106
|
-
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running tests..."
|
107
|
-
/usr/bin/ctest --force-new-ctest-process $(ARGS)
|
108
|
-
.PHONY : test
|
109
|
-
|
110
|
-
# Special rule for the target test
|
111
|
-
test/fast: test
|
112
|
-
.PHONY : test/fast
|
113
|
-
|
114
|
-
# The main all target
|
115
|
-
all: cmake_check_build_system
|
116
|
-
cd /home/abinashmeher999/gsoc/symengine && $(CMAKE_COMMAND) -E cmake_progress_start /home/abinashmeher999/gsoc/symengine/CMakeFiles /home/abinashmeher999/gsoc/symengine/symengine/ruby/lib/symengine/CMakeFiles/progress.marks
|
117
|
-
cd /home/abinashmeher999/gsoc/symengine && $(MAKE) -f CMakeFiles/Makefile2 symengine/ruby/lib/symengine/all
|
118
|
-
$(CMAKE_COMMAND) -E cmake_progress_start /home/abinashmeher999/gsoc/symengine/CMakeFiles 0
|
119
|
-
.PHONY : all
|
120
|
-
|
121
|
-
# The main clean target
|
122
|
-
clean:
|
123
|
-
cd /home/abinashmeher999/gsoc/symengine && $(MAKE) -f CMakeFiles/Makefile2 symengine/ruby/lib/symengine/clean
|
124
|
-
.PHONY : clean
|
125
|
-
|
126
|
-
# The main clean target
|
127
|
-
clean/fast: clean
|
128
|
-
.PHONY : clean/fast
|
129
|
-
|
130
|
-
# Prepare targets for installation.
|
131
|
-
preinstall: all
|
132
|
-
cd /home/abinashmeher999/gsoc/symengine && $(MAKE) -f CMakeFiles/Makefile2 symengine/ruby/lib/symengine/preinstall
|
133
|
-
.PHONY : preinstall
|
134
|
-
|
135
|
-
# Prepare targets for installation.
|
136
|
-
preinstall/fast:
|
137
|
-
cd /home/abinashmeher999/gsoc/symengine && $(MAKE) -f CMakeFiles/Makefile2 symengine/ruby/lib/symengine/preinstall
|
138
|
-
.PHONY : preinstall/fast
|
139
|
-
|
140
|
-
# clear depends
|
141
|
-
depend:
|
142
|
-
cd /home/abinashmeher999/gsoc/symengine && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
|
143
|
-
.PHONY : depend
|
144
|
-
|
145
|
-
# Convenience name for target.
|
146
|
-
symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/rule:
|
147
|
-
cd /home/abinashmeher999/gsoc/symengine && $(MAKE) -f CMakeFiles/Makefile2 symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/rule
|
148
|
-
.PHONY : symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/rule
|
149
|
-
|
150
|
-
# Convenience name for target.
|
151
|
-
symengine_ruby: symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/rule
|
152
|
-
.PHONY : symengine_ruby
|
153
|
-
|
154
|
-
# fast build rule for target.
|
155
|
-
symengine_ruby/fast:
|
156
|
-
cd /home/abinashmeher999/gsoc/symengine && $(MAKE) -f symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/build.make symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/build
|
157
|
-
.PHONY : symengine_ruby/fast
|
158
|
-
|
159
|
-
__/__/ext/symengine/ruby_basic.o: __/__/ext/symengine/ruby_basic.c.o
|
160
|
-
.PHONY : __/__/ext/symengine/ruby_basic.o
|
161
|
-
|
162
|
-
# target to build an object file
|
163
|
-
__/__/ext/symengine/ruby_basic.c.o:
|
164
|
-
cd /home/abinashmeher999/gsoc/symengine && $(MAKE) -f symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/build.make symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_basic.c.o
|
165
|
-
.PHONY : __/__/ext/symengine/ruby_basic.c.o
|
166
|
-
|
167
|
-
__/__/ext/symengine/ruby_basic.i: __/__/ext/symengine/ruby_basic.c.i
|
168
|
-
.PHONY : __/__/ext/symengine/ruby_basic.i
|
169
|
-
|
170
|
-
# target to preprocess a source file
|
171
|
-
__/__/ext/symengine/ruby_basic.c.i:
|
172
|
-
cd /home/abinashmeher999/gsoc/symengine && $(MAKE) -f symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/build.make symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_basic.c.i
|
173
|
-
.PHONY : __/__/ext/symengine/ruby_basic.c.i
|
174
|
-
|
175
|
-
__/__/ext/symengine/ruby_basic.s: __/__/ext/symengine/ruby_basic.c.s
|
176
|
-
.PHONY : __/__/ext/symengine/ruby_basic.s
|
177
|
-
|
178
|
-
# target to generate assembly for a file
|
179
|
-
__/__/ext/symengine/ruby_basic.c.s:
|
180
|
-
cd /home/abinashmeher999/gsoc/symengine && $(MAKE) -f symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/build.make symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_basic.c.s
|
181
|
-
.PHONY : __/__/ext/symengine/ruby_basic.c.s
|
182
|
-
|
183
|
-
__/__/ext/symengine/ruby_integer.o: __/__/ext/symengine/ruby_integer.c.o
|
184
|
-
.PHONY : __/__/ext/symengine/ruby_integer.o
|
185
|
-
|
186
|
-
# target to build an object file
|
187
|
-
__/__/ext/symengine/ruby_integer.c.o:
|
188
|
-
cd /home/abinashmeher999/gsoc/symengine && $(MAKE) -f symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/build.make symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_integer.c.o
|
189
|
-
.PHONY : __/__/ext/symengine/ruby_integer.c.o
|
190
|
-
|
191
|
-
__/__/ext/symengine/ruby_integer.i: __/__/ext/symengine/ruby_integer.c.i
|
192
|
-
.PHONY : __/__/ext/symengine/ruby_integer.i
|
193
|
-
|
194
|
-
# target to preprocess a source file
|
195
|
-
__/__/ext/symengine/ruby_integer.c.i:
|
196
|
-
cd /home/abinashmeher999/gsoc/symengine && $(MAKE) -f symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/build.make symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_integer.c.i
|
197
|
-
.PHONY : __/__/ext/symengine/ruby_integer.c.i
|
198
|
-
|
199
|
-
__/__/ext/symengine/ruby_integer.s: __/__/ext/symengine/ruby_integer.c.s
|
200
|
-
.PHONY : __/__/ext/symengine/ruby_integer.s
|
201
|
-
|
202
|
-
# target to generate assembly for a file
|
203
|
-
__/__/ext/symengine/ruby_integer.c.s:
|
204
|
-
cd /home/abinashmeher999/gsoc/symengine && $(MAKE) -f symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/build.make symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_integer.c.s
|
205
|
-
.PHONY : __/__/ext/symengine/ruby_integer.c.s
|
206
|
-
|
207
|
-
__/__/ext/symengine/ruby_rational.o: __/__/ext/symengine/ruby_rational.c.o
|
208
|
-
.PHONY : __/__/ext/symengine/ruby_rational.o
|
209
|
-
|
210
|
-
# target to build an object file
|
211
|
-
__/__/ext/symengine/ruby_rational.c.o:
|
212
|
-
cd /home/abinashmeher999/gsoc/symengine && $(MAKE) -f symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/build.make symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_rational.c.o
|
213
|
-
.PHONY : __/__/ext/symengine/ruby_rational.c.o
|
214
|
-
|
215
|
-
__/__/ext/symengine/ruby_rational.i: __/__/ext/symengine/ruby_rational.c.i
|
216
|
-
.PHONY : __/__/ext/symengine/ruby_rational.i
|
217
|
-
|
218
|
-
# target to preprocess a source file
|
219
|
-
__/__/ext/symengine/ruby_rational.c.i:
|
220
|
-
cd /home/abinashmeher999/gsoc/symengine && $(MAKE) -f symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/build.make symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_rational.c.i
|
221
|
-
.PHONY : __/__/ext/symengine/ruby_rational.c.i
|
222
|
-
|
223
|
-
__/__/ext/symengine/ruby_rational.s: __/__/ext/symengine/ruby_rational.c.s
|
224
|
-
.PHONY : __/__/ext/symengine/ruby_rational.s
|
225
|
-
|
226
|
-
# target to generate assembly for a file
|
227
|
-
__/__/ext/symengine/ruby_rational.c.s:
|
228
|
-
cd /home/abinashmeher999/gsoc/symengine && $(MAKE) -f symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/build.make symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_rational.c.s
|
229
|
-
.PHONY : __/__/ext/symengine/ruby_rational.c.s
|
230
|
-
|
231
|
-
__/__/ext/symengine/ruby_symbol.o: __/__/ext/symengine/ruby_symbol.c.o
|
232
|
-
.PHONY : __/__/ext/symengine/ruby_symbol.o
|
233
|
-
|
234
|
-
# target to build an object file
|
235
|
-
__/__/ext/symengine/ruby_symbol.c.o:
|
236
|
-
cd /home/abinashmeher999/gsoc/symengine && $(MAKE) -f symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/build.make symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_symbol.c.o
|
237
|
-
.PHONY : __/__/ext/symengine/ruby_symbol.c.o
|
238
|
-
|
239
|
-
__/__/ext/symengine/ruby_symbol.i: __/__/ext/symengine/ruby_symbol.c.i
|
240
|
-
.PHONY : __/__/ext/symengine/ruby_symbol.i
|
241
|
-
|
242
|
-
# target to preprocess a source file
|
243
|
-
__/__/ext/symengine/ruby_symbol.c.i:
|
244
|
-
cd /home/abinashmeher999/gsoc/symengine && $(MAKE) -f symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/build.make symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_symbol.c.i
|
245
|
-
.PHONY : __/__/ext/symengine/ruby_symbol.c.i
|
246
|
-
|
247
|
-
__/__/ext/symengine/ruby_symbol.s: __/__/ext/symengine/ruby_symbol.c.s
|
248
|
-
.PHONY : __/__/ext/symengine/ruby_symbol.s
|
249
|
-
|
250
|
-
# target to generate assembly for a file
|
251
|
-
__/__/ext/symengine/ruby_symbol.c.s:
|
252
|
-
cd /home/abinashmeher999/gsoc/symengine && $(MAKE) -f symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/build.make symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/ruby_symbol.c.s
|
253
|
-
.PHONY : __/__/ext/symengine/ruby_symbol.c.s
|
254
|
-
|
255
|
-
__/__/ext/symengine/symengine.o: __/__/ext/symengine/symengine.c.o
|
256
|
-
.PHONY : __/__/ext/symengine/symengine.o
|
257
|
-
|
258
|
-
# target to build an object file
|
259
|
-
__/__/ext/symengine/symengine.c.o:
|
260
|
-
cd /home/abinashmeher999/gsoc/symengine && $(MAKE) -f symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/build.make symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/symengine.c.o
|
261
|
-
.PHONY : __/__/ext/symengine/symengine.c.o
|
262
|
-
|
263
|
-
__/__/ext/symengine/symengine.i: __/__/ext/symengine/symengine.c.i
|
264
|
-
.PHONY : __/__/ext/symengine/symengine.i
|
265
|
-
|
266
|
-
# target to preprocess a source file
|
267
|
-
__/__/ext/symengine/symengine.c.i:
|
268
|
-
cd /home/abinashmeher999/gsoc/symengine && $(MAKE) -f symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/build.make symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/symengine.c.i
|
269
|
-
.PHONY : __/__/ext/symengine/symengine.c.i
|
270
|
-
|
271
|
-
__/__/ext/symengine/symengine.s: __/__/ext/symengine/symengine.c.s
|
272
|
-
.PHONY : __/__/ext/symengine/symengine.s
|
273
|
-
|
274
|
-
# target to generate assembly for a file
|
275
|
-
__/__/ext/symengine/symengine.c.s:
|
276
|
-
cd /home/abinashmeher999/gsoc/symengine && $(MAKE) -f symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/build.make symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/symengine.c.s
|
277
|
-
.PHONY : __/__/ext/symengine/symengine.c.s
|
278
|
-
|
279
|
-
__/__/ext/symengine/symengine_macros.o: __/__/ext/symengine/symengine_macros.c.o
|
280
|
-
.PHONY : __/__/ext/symengine/symengine_macros.o
|
281
|
-
|
282
|
-
# target to build an object file
|
283
|
-
__/__/ext/symengine/symengine_macros.c.o:
|
284
|
-
cd /home/abinashmeher999/gsoc/symengine && $(MAKE) -f symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/build.make symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/symengine_macros.c.o
|
285
|
-
.PHONY : __/__/ext/symengine/symengine_macros.c.o
|
286
|
-
|
287
|
-
__/__/ext/symengine/symengine_macros.i: __/__/ext/symengine/symengine_macros.c.i
|
288
|
-
.PHONY : __/__/ext/symengine/symengine_macros.i
|
289
|
-
|
290
|
-
# target to preprocess a source file
|
291
|
-
__/__/ext/symengine/symengine_macros.c.i:
|
292
|
-
cd /home/abinashmeher999/gsoc/symengine && $(MAKE) -f symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/build.make symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/symengine_macros.c.i
|
293
|
-
.PHONY : __/__/ext/symengine/symengine_macros.c.i
|
294
|
-
|
295
|
-
__/__/ext/symengine/symengine_macros.s: __/__/ext/symengine/symengine_macros.c.s
|
296
|
-
.PHONY : __/__/ext/symengine/symengine_macros.s
|
297
|
-
|
298
|
-
# target to generate assembly for a file
|
299
|
-
__/__/ext/symengine/symengine_macros.c.s:
|
300
|
-
cd /home/abinashmeher999/gsoc/symengine && $(MAKE) -f symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/build.make symengine/ruby/lib/symengine/CMakeFiles/symengine_ruby.dir/__/__/ext/symengine/symengine_macros.c.s
|
301
|
-
.PHONY : __/__/ext/symengine/symengine_macros.c.s
|
302
|
-
|
303
|
-
# Help Target
|
304
|
-
help:
|
305
|
-
@echo "The following are some of the valid targets for this Makefile:"
|
306
|
-
@echo "... all (the default if no target is provided)"
|
307
|
-
@echo "... clean"
|
308
|
-
@echo "... depend"
|
309
|
-
@echo "... edit_cache"
|
310
|
-
@echo "... install"
|
311
|
-
@echo "... install/local"
|
312
|
-
@echo "... list_install_components"
|
313
|
-
@echo "... rebuild_cache"
|
314
|
-
@echo "... symengine_ruby"
|
315
|
-
@echo "... test"
|
316
|
-
@echo "... __/__/ext/symengine/ruby_basic.o"
|
317
|
-
@echo "... __/__/ext/symengine/ruby_basic.i"
|
318
|
-
@echo "... __/__/ext/symengine/ruby_basic.s"
|
319
|
-
@echo "... __/__/ext/symengine/ruby_integer.o"
|
320
|
-
@echo "... __/__/ext/symengine/ruby_integer.i"
|
321
|
-
@echo "... __/__/ext/symengine/ruby_integer.s"
|
322
|
-
@echo "... __/__/ext/symengine/ruby_rational.o"
|
323
|
-
@echo "... __/__/ext/symengine/ruby_rational.i"
|
324
|
-
@echo "... __/__/ext/symengine/ruby_rational.s"
|
325
|
-
@echo "... __/__/ext/symengine/ruby_symbol.o"
|
326
|
-
@echo "... __/__/ext/symengine/ruby_symbol.i"
|
327
|
-
@echo "... __/__/ext/symengine/ruby_symbol.s"
|
328
|
-
@echo "... __/__/ext/symengine/symengine.o"
|
329
|
-
@echo "... __/__/ext/symengine/symengine.i"
|
330
|
-
@echo "... __/__/ext/symengine/symengine.s"
|
331
|
-
@echo "... __/__/ext/symengine/symengine_macros.o"
|
332
|
-
@echo "... __/__/ext/symengine/symengine_macros.i"
|
333
|
-
@echo "... __/__/ext/symengine/symengine_macros.s"
|
334
|
-
.PHONY : help
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
#=============================================================================
|
339
|
-
# Special targets to cleanup operation of make.
|
340
|
-
|
341
|
-
# Special rule to run CMake to check the build system integrity.
|
342
|
-
# No rule that depends on this can have commands that come from listfiles
|
343
|
-
# because they might be regenerated.
|
344
|
-
cmake_check_build_system:
|
345
|
-
cd /home/abinashmeher999/gsoc/symengine && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
|
346
|
-
.PHONY : cmake_check_build_system
|
347
|
-
|
@@ -1,34 +0,0 @@
|
|
1
|
-
# Install script for directory: /home/abinashmeher999/gsoc/symengine/symengine/ruby/lib/symengine
|
2
|
-
|
3
|
-
# Set the install prefix
|
4
|
-
IF(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
5
|
-
SET(CMAKE_INSTALL_PREFIX "/usr/local")
|
6
|
-
ENDIF(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
7
|
-
STRING(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
|
8
|
-
|
9
|
-
# Set the install configuration name.
|
10
|
-
IF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
11
|
-
IF(BUILD_TYPE)
|
12
|
-
STRING(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
|
13
|
-
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
14
|
-
ELSE(BUILD_TYPE)
|
15
|
-
SET(CMAKE_INSTALL_CONFIG_NAME "Debug")
|
16
|
-
ENDIF(BUILD_TYPE)
|
17
|
-
MESSAGE(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
|
18
|
-
ENDIF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
|
19
|
-
|
20
|
-
# Set the component getting installed.
|
21
|
-
IF(NOT CMAKE_INSTALL_COMPONENT)
|
22
|
-
IF(COMPONENT)
|
23
|
-
MESSAGE(STATUS "Install component: \"${COMPONENT}\"")
|
24
|
-
SET(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
|
25
|
-
ELSE(COMPONENT)
|
26
|
-
SET(CMAKE_INSTALL_COMPONENT)
|
27
|
-
ENDIF(COMPONENT)
|
28
|
-
ENDIF(NOT CMAKE_INSTALL_COMPONENT)
|
29
|
-
|
30
|
-
# Install shared libraries without execute permission?
|
31
|
-
IF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
32
|
-
SET(CMAKE_INSTALL_SO_NO_EXE "1")
|
33
|
-
ENDIF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
|
34
|
-
|
data/lib/symengine/symengine.so
DELETED
Binary file
|