Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
senf
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
Service Desk
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
wiback
senf
Commits
45d822f7
Commit
45d822f7
authored
17 years ago
by
jkaeber
Browse files
Options
Downloads
Patches
Plain Diff
Added a Makefile with some scons shortcuts and rules for generating a debian package.
parent
50db31c0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile
+96
-0
96 additions, 0 deletions
Makefile
control
+11
-0
11 additions, 0 deletions
control
with
107 additions
and
0 deletions
Makefile
0 → 100644
+
96
−
0
View file @
45d822f7
#----------------------------------------------------------------------
# Some SCONS shortcuts
#----------------------------------------------------------------------
SCONS
=
scons
default
:
build
build
:
$(
SCONS
)
clean
:
$(
SCONS
)
--clean
all_docs all_tests
:
$(
SCONS
)
$@
#----------------------------------------------------------------------
# Subversion stuff
#----------------------------------------------------------------------
SVN_REVISION
=
$(
shell svn info|grep
'^Revision: '
|awk
'{print $$2
}
'
)
svn_version
:
@
echo
$(
SVN_REVISION
)
#----------------------------------------------------------------------
# Building SENF requires some debian packages
#----------------------------------------------------------------------
DEB_BASE
=
scons build-essential binutils-dev
DEB_BOOST
=
libboost-dev libboost-test-dev
DEB_BOOST
+=
libboost-date-time-dev libboost-regex-dev libboost-thread-dev
DEB_DOC
=
doxygen dia tidy xsltproc graphviz
prerequisites
:
aptitude
install
$(
DEB_BASE
)
$(
DEB_BOOST
)
$(
DEB_DOC
)
#----------------------------------------------------------------------
# Debian package info
#----------------------------------------------------------------------
PKG_NAME
=
senf-dev
PKG_ARCH
=
i386
PKG_VERS
=
0.0.
$(
SVN_REVISION
)
-1
PKG_FILE
=
$(
PKG_NAME
)
-
$(
PKG_VERS
)
_
$(
PKG_ARCH
)
.deb
#----------------------------------------------------------------------
# Debian package structure
#----------------------------------------------------------------------
DEB_TOP
=
./debian
DEB_CTL
=
$(
DEB_TOP
)
/DEBIAN
DEB_LIB
=
$(
DEB_TOP
)
/usr/lib/senf
DEB_INC
=
$(
DEB_TOP
)
/usr/include/senf
DEB_DOC
=
$(
DEB_TOP
)
/usr/share/doc/senf
#----------------------------------------------------------------------
# Debian package content
#----------------------------------------------------------------------
SENF_LIBS
=
*
.a
SENF_HDRS
=
$$(
find
-path
'./XXXdebian'
-prune
\
-o
-iname
\*
.h
\
-o
-iname
\*
.hh
\
-o
-iname
\*
.ih
\
-o
-iname
\*
.c
\
-o
-iname
\*
.cc
\
-o
-iname
\*
.ct
\
-o
-iname
\*
.cci
\
-o
-iname
\*
.cti
\
-o
-iname
\*
.mpp
\
)
package
:
$(PKG_FILE)
$(PKG_FILE)
:
build
rm
-rf
$(
DEB_TOP
)
mkdir
-p
$(
DEB_CTL
)
$(
DEB_INC
)
$(
DEB_LIB
)
$(
DEB_DOC
)
find
$(
DEB_TOP
)
-type
d | xargs
chmod
755
tar
cf -
$(
SENF_HDRS
)
|
(
cd
$(
DEB_INC
)
&&
tar
xf -
)
tar
cf -
$(
SENF_LIBS
)
|
(
cd
$(
DEB_LIB
)
&&
tar
xf -
)
sed
-e
's,PKG_VERSION,
$(
PKG_VERS
)
,'
control
>
$(
DEB_CTL
)
/control
$(
MAKE
)
deb-doc
dpkg-deb
--build
debian
$(
PKG_FILE
)
#----------------------------------------------------------------------
# Extract documentation files from source tree
#----------------------------------------------------------------------
deb-doc
:
rsync
-rz
\
--filter
=
"- debian/*"
\
--filter
=
"- .svn"
\
--filter
=
"+ */"
\
--filter
=
"+ *.html"
\
--filter
=
"+ *.css"
\
--filter
=
"+ *.png"
\
--filter
=
"+ *.php"
\
--filter
=
"+ *.idx"
\
--filter
=
"+ *.log"
\
--filter
=
"- *"
\
.
$(
DEB_DOC
)
This diff is collapsed.
Click to expand it.
control
0 → 100644
+
11
−
0
View file @
45d822f7
Package: senf-dev
Version: PKG_VERSION
Section: base
Priority: optional
Architecture: i386
Depends:libboost-dev, libboost-date-time-dev, libboost-regex-dev,
libboost-thread-dev
Maintainer: Joachim Kaeber <joachim.kaeber@fokus.fraunhofer.de>
Description: The SENF Extensible Network Framework
The SENF Framework is a collection of loosely coupled modules
for writing network oriented applications in C++.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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