public
Description: Debugger for zsh (at least 4.3.6-dev-2)
Homepage:
Clone URL: git://github.com/rocky/zshdb.git
rocky (author)
Fri Jul 03 22:57:20 -0700 2009
commit  d3370dfff7846c64685aa948be7662c9ca3093c1
tree    0daa8cce92dcca6e42b66e85602c19c5952699b7
parent  8f7b94496c279d3f07c37f7bbc9d8a335683f893
zshdb / Makefile.am
100644 62 lines (46 sloc) 1.395 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Copyright (C) 2008 Rocky Bernstein rocky@gnu.org
#
# zshdb is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free
# Software Foundation; either version 2, or (at your option) any later
# version.
#
# zshdb is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License along
# with zshdb; see the file COPYING. If not, write to the Free Software
# Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA.
 
AUTOMAKE_OPTIONS = dist-bzip2
 
if INSTALL_EMACS_LISP
emacs = emacs
else
emacs =
endif
SUBDIRS = command doc $(emacs) lib test
 
pkgdata_DATA = \
dbg-pre.sh \
dbg-main.sh \
dbg-opts.sh \
dbg-trace.sh \
getopts_long.sh
 
# Set up the install target
bin_SCRIPTS = zshdb
 
EXTRA_DIST = $(pkgdata_DATA) THANKS
 
# cvs2cl
MAINTAINERCLEANFILES = ChangeLog
 
test: check
 
# Unit testing
check-unit: test-unit
 
test-unit:
cd test/unit && make check
 
phony = check test-unit check-unit
 
if MAINTAINER_MODE
 
CL = ChangeLog
ChangeLog:
git log --pretty --numstat --summary | $(GIT2CL) > $@
 
ACLOCAL_AMFLAGS=-I .
 
endif
 
.PHONY: $(CL) test