Changeset e26aa72
- Timestamp:
- 2015-01-25T05:00:06Z (10 years ago)
- Branches:
- master
- Children:
- 36ee8c6, 95e17fc
- Parents:
- eb4ad8d
- git-author:
- dequis <dx@…> (24-01-15 22:48:09)
- git-committer:
- dequis <dx@…> (25-01-15 05:00:06)
- Files:
-
- 3 added
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
reb4ad8d re26aa72 24 24 .depend 25 25 DEADJOE 26 callgrind.out.* 27 cov-int 28 .bzr 29 .bzrignore 30 .git 31 .gitignore -
Makefile
reb4ad8d re26aa72 153 153 x=$$(basename $$(pwd)); \ 154 154 cd ..; \ 155 tar czf $$x.tar.gz --exclude =debian --exclude=.bzr* --exclude=.depend$$x155 tar czf $$x.tar.gz --exclude-from=.gitignore $$x 156 156 157 157 $(subdirs): -
configure
reb4ad8d re26aa72 667 667 fi 668 668 669 if [ -z "$BITLBEE_VERSION" -a -d .git ] && type git > /dev/null 2> /dev/null; then 670 rev=`git describe --long --tags`-`git rev-parse --abbrev-ref HEAD` 671 echo 'Using '$rev' as git version number' 672 BITLBEE_VERSION=$rev-git 673 fi 674 669 675 if [ -n "$BITLBEE_VERSION" ]; then 670 676 echo 'Spoofing version number: '$BITLBEE_VERSION -
doc/Makefile
reb4ad8d re26aa72 5 5 6 6 all: 7 # Only build the docs if this is a bzr checkout8 test ! -d ../.bzr|| $(MAKE) -C user-guide7 # Only build the docs if this is a git tree 8 test ! '(' -d ../.git -o -d ../.bzr ')' || $(MAKE) -C user-guide 9 9 10 10 install:
Note: See TracChangeset
for help on using the changeset viewer.