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.2 by root, Sat Jan 21 22:01:36 2006 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines