Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libinterpolator
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs
lib
libinterpolator
Commits
66e897de
Commit
66e897de
authored
5 years ago
by
Claudio Scafuri
Browse files
Options
Downloads
Patches
Plain Diff
cleanup of Makefile and README.md
parent
db5c13c5
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Doxyfile
+1
-1
1 addition, 1 deletion
Doxyfile
Makefile
+7
-5
7 additions, 5 deletions
Makefile
README.md
+39
-0
39 additions, 0 deletions
README.md
with
47 additions
and
6 deletions
Doxyfile
+
1
−
1
View file @
66e897de
...
...
@@ -38,7 +38,7 @@ PROJECT_NUMBER = 1
# If a relative path is entered, it will be relative to the location
# where doxygen was started. If left blank the current directory will be used.
OUTPUT_DIRECTORY = doc
OUTPUT_DIRECTORY = doc
s
# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
# 4096 sub-directories (in 2 levels) under the output directory of each output
...
...
This diff is collapsed.
Click to expand it.
Makefile
+
7
−
5
View file @
66e897de
...
...
@@ -36,13 +36,13 @@
CXX
=
g++
CC
=
$(
CXX
)
LD
=
$(
CXX
)
DEBUG
=
-g
#
DEBUG = -g
RANLIB
=
ranlib
#
OPTIM = -O2
OPTIM
=
-O2
INCLUDE
=
-I
.
CXXFLAGS
+=
-fPIC
-D_REENTRANT
$(
DEBUG
)
$(
OPTIM
)
$(
WARN
)
$(
INCLUDE
)
CXXFLAGS
+=
-std
=
c++11
-fPIC
-D_REENTRANT
$(
DEBUG
)
$(
OPTIM
)
$(
WARN
)
$(
INCLUDE
)
CFLAGS
=
$(
CXXFLAGS
)
PROJECTHOME
=
.
##############################################
...
...
@@ -150,15 +150,17 @@ doc:
doxygen 2>doxy.log
docclean
:
rm
-rf
doc doxy.log
rm
-rf
doc
s
doxy.log
clean
:
rm
-f
*
.o core
*
*
.gcov
*
.gcno
*
.gcda
*
.grind
*
grind.core.
*
*
.valgrind dump
*
gmon.out doxygen_log.txt dump
*
*
.csv
rm
-f
$(
PROJECTHOME
)
/lib/
*
.a
$(
PROJECTHOME
)
/lib/
*
.so
*
rm
-f
test_spline test_inverse test_periodicspline test_freespline test_multipoly test_magnets test_dipole test_quadrupole test_sextupole test_kicker test_solenoid spltest
rm
-f
*
.csv
rm
-f
doxy.log
distclean
:
clean docclean
rm
-f
*
~ .kdbgrc.
*
rm
-f
$(
PROJECTHOME
)
/lib/
*
.a
$(
PROJECTHOME
)
/lib/
*
.so
*
rm
-rf
lib
install
:
lib
install
-d
$(
DESTDIRLIB
)
...
...
This diff is collapsed.
Click to expand it.
README.md
+
39
−
0
View file @
66e897de
# interpolator
C++ library for interpolation of funziontions of real variable y=f(x).
Various splines and mutipolynomial methods are implemented.
# requirements
reasonably up-to-date GNU C++ compiler
# build
make test : build the test programs
make lib : build only the shared library
make libstatic: build the static (archive) library
make doc : build the doxyfile based documentation
make all : build lib , libstatic and test
make install : install the libraries and header files in the standrd elettra development environment
# usage
see docs/htlm/annotated.html
## History
2012-01-15 : project created on gitlab, derived from CVS release_01_01_01
## Credits
Claudio Scafuri
Elettra-Sincrotrone Trieste S.C.p.A. di interesse nazionale
Strada Statale 14 - km 163,5 in AREA Science Park
34149 Basovizza, Trieste ITALY
## License
GPL 3
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment