INSTALL revision 28946486deb6eb8e50a14ad6dab7616d484c08ef
1How to build ltrace from source
2-------------------------------
3
4To get the latest version from GIT:
5
6	git clone git://git.debian.org/git/collab-maint/ltrace.git
7
8To create a distribution (ltrace-<version>.tar.gz):
9
10	./mkdist
11
12To compile from repository:
13
14	aclocal
15	autoheader
16	autoconf
17	./configure
18	make
19
20To compile from distribution:
21
22	./configure
23	make
24
25To build debian/control (to create Debian package):
26
27	debian/rules debian/control DEB_AUTO_UPDATE_DEBIAN_CONTROL:=yes
28