|
Revision 2, 0.7 kB
(checked in by akhavr, 1 year ago)
|
ticket:1:
- some progress with loading configs
|
- Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 |
# $Id$ |
|---|
| 2 |
# Copyright (C) 2001-2007 KDS Software Group http://www.kds.com.ua/ |
|---|
| 3 |
|
|---|
| 4 |
include Makefile.def |
|---|
| 5 |
|
|---|
| 6 |
# Targets |
|---|
| 7 |
.PHONY: test clean dist todo |
|---|
| 8 |
|
|---|
| 9 |
test: |
|---|
| 10 |
$(MAKE) -C bin build test |
|---|
| 11 |
|
|---|
| 12 |
clean: |
|---|
| 13 |
$(MAKE) -C bin clean |
|---|
| 14 |
-rm *~* |
|---|
| 15 |
|
|---|
| 16 |
dist: clean test pylint |
|---|
| 17 |
$(MAKE) clean |
|---|
| 18 |
svn copy . $(repo)/$(projshort)/tag/rel-$(ver) -m "Making release $(ver)" |
|---|
| 19 |
wd=`pwd` && mkdir -p ~/tmp/export && cd ~/tmp/export && \ |
|---|
| 20 |
svn -q export $(repo)/$(projshort)/tag/rel-$(ver) $(proj)-$(ver) && \ |
|---|
| 21 |
tar cjf $$wd/../$(proj)-$(ver).tar.bz2 $(proj)-$(ver) ; \ |
|---|
| 22 |
rm -r $(proj)-$(ver) |
|---|
| 23 |
|
|---|
| 24 |
todo: |
|---|
| 25 |
find . -type f -not -name '*~*' -not -name 'Makefile*' -print0 | xargs -0 -e grep -n -e 'todo' |
|---|
| 26 |
|
|---|
| 27 |
pylint: |
|---|
| 28 |
pylint bin |
|---|
| 29 |
|
|---|
| 30 |
### Local variables: *** |
|---|
| 31 |
### compile-command:"make" *** |
|---|
| 32 |
### tab-width: 2 *** |
|---|
| 33 |
### End: *** |
|---|