Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cmm
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
ds
cmm
Commits
b887530f
Commit
b887530f
authored
4 years ago
by
Claudio Scafuri
Browse files
Options
Downloads
Patches
Plain Diff
add makefile for INAU
parent
26d61b17
No related branches found
Branches containing commit
Tags
1.0.2
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
Makefile
+13
-0
13 additions, 0 deletions
Makefile
README.md
+1
-1
1 addition, 1 deletion
README.md
src/cmm-srv
+0
-14
0 additions, 14 deletions
src/cmm-srv
with
15 additions
and
15 deletions
.gitignore
+
1
−
0
View file @
b887530f
...
...
@@ -17,3 +17,4 @@ core*
software
oldsrc
CVS
*-srv
This diff is collapsed.
Click to expand it.
Makefile
0 → 100644
+
13
−
0
View file @
b887530f
NAME_SRV
=
cmm
PY_FILES
+=
$(
wildcard src/
*
.py
)
default
:
bin/${NAME_SRV} ${PY_FILES}
@
cp
${
PY_FILES
}
bin/
${
NAME_SRV
}
bin/${NAME_SRV}
:
@
test
-d
$@
||
mkdirhier
$@
clean
:
@
rm
-fr
bin/ src/
*
~
.PHONY
:
clean
This diff is collapsed.
Click to expand it.
README.md
+
1
−
1
View file @
b887530f
...
...
@@ -12,7 +12,7 @@ The device is written in python 2.7 and needs the tango python bindings
## Installation & deployment
install src/Cmm.py and src/cmm-srv in the execution directory of the target system
use INAU facility
## History
...
...
This diff is collapsed.
Click to expand it.
src/cmm-srv
deleted
100755 → 0
+
0
−
14
View file @
26d61b17
#!/usr/bin/env python
#
# Template of main python server wrapper
# Solves the problem of pogo generated Tango server file names which are not easily handled by databeds and Starter.
# 1) copy this template in the server directoy using the canonical server (executable) name: cp ../python-srv.template myclass-srv
# 2) chmod +x myclass-srv
# 3) edit myclass-srv ename MyClass to the actual class name of the python Tango server (you can also clean up these notes)
#
from
Cmm
import
main
if
__name__
==
'
__main__
'
:
main
()
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