Skip to content
Snippets Groups Projects
Commit f6076a52 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

update makefile for 0.7 release

parent c2481dc9
No related branches found
No related tags found
No related merge requests found
VERSION ?= 0.6.1 VERSION ?= 0.7
MODULES = src src/common po MODULES = src src/common po
PREFIX = /usr PREFIX = /usr
...@@ -28,27 +28,28 @@ idle: ...@@ -28,27 +28,28 @@ idle:
make -C src/common all; make -C src/common all;
pyo: pyo:
ST="import py_compile\n py_compile.compile('$$f')"
for f in $(FILES_PY) ; do \ for f in $(FILES_PY) ; do \
python -OO -c "$$ST"; \ python -OO -c "import py_compile; py_compile.compile('$$f')"; \
done done
clean: clean:
find -name *.pyc -exec rm {} \; find -name *.pyc -exec rm {} \;
find -name *.pyo -exec rm {} \;
find -name *.mo -exec rm {} \; find -name *.mo -exec rm {} \;
$(foreach sdir, $(MODULES), make -C $(sdir) clean;) $(foreach sdir, $(MODULES), make -C $(sdir) clean;)
dist: dist:
-rm -rf gajim-$(VERSION) -rm -rf gajim-$(VERSION)
mkdir gajim-$(VERSION) mkdir gajim-$(VERSION)
cp -r data src doc po gajim-$(VERSION)/ cp -r data src doc po scripts gajim-$(VERSION)/
cp AUTHORS gajim.1 gajim.xpm gajim.ico COPYING Makefile Changelog README gajim.py 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 '.svn' -exec rm -rf {} \; 2> /dev/null
find gajim-$(VERSION) -name '*.pyc' -exec rm {} \; find gajim-$(VERSION) -name '*.pyc' -exec rm {} \;
find gajim-$(VERSION) -name '*.pyo' -exec rm {} \; find gajim-$(VERSION) -name '*.pyo' -exec rm {} \;
find gajim-$(VERSION) -name '.*' -exec rm {} \; find gajim-$(VERSION) -name '.*' -exec rm {} \;
@echo tarring gajim-$(VERSION) ... @echo tarring gajim-$(VERSION) ...
@tar czf gajim-$(VERSION).tar.gz gajim-$(VERSION)/ @tar czf gajim-$(VERSION).tar.gz gajim-$(VERSION)/
@tar cjf gajim-$(VERSION).tar.bz2 gajim-$(VERSION)/
rm -rf gajim-$(VERSION) rm -rf gajim-$(VERSION)
install: install:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment