ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libptytty/Makefile.in
(Generate patch)

Comparing libptytty/Makefile.in (file contents):
Revision 1.1 by root, Sat Jan 21 21:54:15 2006 UTC vs.
Revision 1.6 by root, Wed Jan 25 21:57:31 2006 UTC

1# ./Makefile.in -*- Makefile -*-
2
3SHELL = /bin/sh
4
5VERNAME = libptytty-0.1
6
7srcdir = @srcdir@
8VPATH = @srcdir@
9.PATH: @srcdir@
10
11first_rule: all
12dummy:
13
14subdirs = src doc
15allsubdirs = $(subdirs)
16
17all allbin alldoc tags install:
18 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
19
20realclean: clean
21 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
22 rm -f config.h config.status config.log libtool
23
24clean:
25 rm -f *~ config.cache
26 rm -f -r autom4te.cache
27 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
28
29check: all
30 echo "no tests"
31
32cleandir: realclean
33
34# distclean goal is for making a clean source tree, but if you have run
35# configure from a different directory, then doesn't destroy all your
36# hardly compiled and linked stuff. That's why there is always $(srcdir)/
37# In that case most of those commands do nothing, except cleaning *~
38# and cleaning source links.
39distclean:
40 (cd $(srcdir); rm -f *~ config.cache config.h config.log config.status libtool)
41 @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done
42 (cd $(srcdir); rm -f Makefile)
43
44distdir:
45 cd src && $(MAKE) depend
46 rm -rf $(VERNAME)
47 mkdir $(VERNAME)
48 rsync -aR `cat MANIFEST` $(VERNAME)/.
49
50tar.gz: distdir
51 tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz
52 rm -rf $(VERNAME)
53
54tar.bz2: distdir
55 tar cvf - $(VERNAME) | bzip2 -vf9 > $(VERNAME).tar.bz2
56 rm -rf $(VERNAME)
57
58dist: tar.bz2
59

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines