Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
moberg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mattias Fält
moberg
Compare revisions
main to master
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
mattiasf/moberg
Select target project
No results found
master
Select Git revision
Swap
Target
anders_blomdell/moberg
Select target project
anders_blomdell/moberg
cont-frb/moberg
mattiasf/moberg
3 results
main
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Remove python 2
· f793bc28
Mattias Fält
authored
4 years ago
f793bc28
Make plugins and adaptors optional
· 38d0b609
Mattias Fält
authored
4 years ago
38d0b609
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile
+2
-2
2 additions, 2 deletions
Makefile
adaptors/python/Makefile
+0
-3
0 additions, 3 deletions
adaptors/python/Makefile
with
2 additions
and
5 deletions
Makefile
View file @
38d0b609
...
...
@@ -2,8 +2,8 @@ LIBRARIES=libmoberg.so
MOBERG_VERSION
=
$(
shell git describe
--tags
|
sed
-e
's/^v//;s/-/./g'
)
CCFLAGS
+=
-Wall
-Werror
-I
$(
shell
pwd
)
-O3
-g
LDFLAGS
+=
-L
$(
shell
pwd
)
/build/
-lmoberg
PLUGINS
:
=
$(
wildcard plugins/
*
)
ADAPTORS
:
=
$(
wildcard adaptors/
*
)
PLUGINS
?
=
$(
wildcard plugins/
*
)
ADAPTORS
?
=
$(
wildcard adaptors/
*
)
export
CCFLAGS
LDFLAGS
LDFLAGS_parse_config
=
-ldl
#-export-dynamic
...
...
This diff is collapsed.
Click to expand it.
adaptors/python/Makefile
View file @
38d0b609
...
...
@@ -4,13 +4,10 @@ all: BUILD INSTALL
.PHONY
:
BUILD
BUILD
:
python2 ./setup.py build
python3 ./setup.py build
.PHONY
:
INSTALL
INSTALL
:
MOBERG_VERSION
=
$(
MOBERG_VERSION
)
python2
\
./setup.py
install
-O1
--prefix
=
/usr/
--root
=
./install
MOBERG_VERSION
=
$(
MOBERG_VERSION
)
python3
\
./setup.py
install
-O1
--prefix
=
/usr/
--root
=
./install
...
...
This diff is collapsed.
Click to expand it.