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

Comparing rxvt-unicode/Makefile.in (file contents):
Revision 1.27 by ayin, Wed Jun 13 16:20:41 2007 UTC vs.
Revision 1.30 by ayin, Mon Nov 12 18:13:10 2007 UTC

28first_rule: all 28first_rule: all
29dummy: 29dummy:
30 30
31subdirs = src doc 31subdirs = src doc
32 32
33MKDIR = $(srcdir)/mkinstalldirs 33RECURSIVE_TARGETS = all allbin alldoc tags clean distclean realclean install
34 34
35#------------------------------------------------------------------------- 35#-------------------------------------------------------------------------
36 36
37all allbin alldoc tags: 37$(RECURSIVE_TARGETS):
38 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done 38 @for I in $(subdirs); do (cd $$I; $(MAKE) $@) || exit 1; done
39 39
40distclean realclean: distclean-local 40distclean realclean: distclean-local
41
42clean distclean realclean:
43 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
44 41
45# 42#
46# entry points for other programs 43# entry points for other programs
47# 44#
48rxvt: 45rxvt:
49 (cd src; ${MAKE}) 46 (cd src; $(MAKE))
50 47
51#------------------------------------------------------------------------- 48#-------------------------------------------------------------------------
52configure: configure.ac aclocal.m4 config.h.in 49configure: configure.ac aclocal.m4 config.h.in
53 cd $(srcdir); ./autogen.sh 50 cd $(srcdir); ./autogen.sh
54 51
56 if test -x config.status; then config.status --recheck; \ 53 if test -x config.status; then config.status --recheck; \
57 else $(SHELL) configure; fi 54 else $(SHELL) configure; fi
58 55
59config.h.in: configure.ac 56config.h.in: configure.ac
60 cd $(srcdir); ./autogen.sh 57 cd $(srcdir); ./autogen.sh
61
62installdirs:
63 $(MKDIR) $(DESTDIR)$(bindir)
64 $(MKDIR) $(DESTDIR)$(mandir)
65
66install: installdirs
67 @for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done
68 58
69check: all 59check: all
70 echo "no tests" 60 echo "no tests"
71 61
72Makefiles: 62Makefiles:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines