Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gajim
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
Model registry
Operate
Environments
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
Erik Huelsmann
gajim
Commits
f6076a52
Commit
f6076a52
authored
19 years ago
by
Yann Leboulanger
Browse files
Options
Downloads
Patches
Plain Diff
update makefile for 0.7 release
parent
c2481dc9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Makefile
+6
-5
6 additions, 5 deletions
Makefile
with
6 additions
and
5 deletions
Makefile
+
6
−
5
View file @
f6076a52
VERSION
?=
0.
6.1
VERSION
?=
0.
7
MODULES
=
src src/common po
PREFIX
=
/usr
...
...
@@ -28,27 +28,28 @@ idle:
make
-C
src/common all
;
pyo
:
ST
=
"import py_compile
\n
py_compile.compile('
$$
f')"
for
f
in
$(
FILES_PY
)
;
do
\
python
-OO
-c
"
$$
ST
"
;
\
python
-OO
-c
"
import py_compile; py_compile.compile('
$$
f')
"
;
\
done
clean
:
find
-name
*
.pyc
-exec
rm
{}
\;
find
-name
*
.pyo
-exec
rm
{}
\;
find
-name
*
.mo
-exec
rm
{}
\;
$(
foreach sdir,
$(
MODULES
)
, make
-C
$(
sdir
)
clean
;)
dist
:
-
rm
-rf
gajim-
$(
VERSION
)
mkdir
gajim-
$(
VERSION
)
cp
-r
data src doc po gajim-
$(
VERSION
)
/
cp
AUTHORS gajim.1 gajim.xpm gajim.ico COPYING Makefile Changelog README
gajim.py
gajim-
$(
VERSION
)
cp
-r
data src doc po
scripts
gajim-
$(
VERSION
)
/
cp
AUTHORS gajim.1 gajim.xpm gajim.ico
gajim.desktop
COPYING Makefile Changelog README
launch.sh
gajim-
$(
VERSION
)
-
find gajim-
$(
VERSION
)
-name
'.svn'
-exec
rm
-rf
{}
\;
2> /dev/null
find gajim-
$(
VERSION
)
-name
'*.pyc'
-exec
rm
{}
\;
find gajim-
$(
VERSION
)
-name
'*.pyo'
-exec
rm
{}
\;
find gajim-
$(
VERSION
)
-name
'.*'
-exec
rm
{}
\;
@
echo
tarring gajim-
$(
VERSION
)
...
@
tar
czf gajim-
$(
VERSION
)
.tar.gz gajim-
$(
VERSION
)
/
@
tar
cjf gajim-
$(
VERSION
)
.tar.bz2 gajim-
$(
VERSION
)
/
rm
-rf
gajim-
$(
VERSION
)
install
:
...
...
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