~ubuntu-branches/ubuntu/karmic/rxvt-unicode/karmic

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Decklin Foster
  • Date: 2007-08-03 12:44:44 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20070803124444-uwmus5csvd7rm4fp
Tags: 8.3-1
* New upstream release (Closes: #433004)
  - Rolled with autoconf 2.61 (Closes: #422540)
* Match https URLs in selection-popup (Closes: #428659)
* Fix typos in urxvtperl(3) (Closes: #411074, #415848)
* Use sensible-browser instead of x-www-browser directly (Closes: #415846)
* Added urxvtcd as alternative (Closes: #381967)

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
man3ext = 3
16
16
man7dir = @mandir@/man7
17
17
man7ext = 7
18
 
CC = @CC@
19
 
CXX = @CXX@
20
 
CPP = @CPP@
21
 
MV = @MV@
22
 
CP = @CP@
23
 
LN = @LN@
24
 
SED = @SED@
25
 
AWK = @AWK@
26
 
ECHO = @ECHO@
27
 
CMP = @CMP@
28
 
TBL = @TBL@
29
18
PERL = @PERL@
30
19
INSTALL = @INSTALL@
31
20
INSTALL_PROGRAM = @INSTALL@ -m 755
32
21
INSTALL_DATA = @INSTALL@ -m 644
33
 
CXXFLAGS = @CXXFLAGS@ 
34
 
CPPFLAGS = @CPPFLAGS@ @XPM_CPPFLAGS@
35
 
LDFLAGS = @LDFLAGS@
36
 
DEFS = @DEFS@
37
 
LIBS = @LIBS@
38
 
DINCLUDE = @DINCLUDE@
39
 
DLIB = @DLIB@
40
 
XINC = @X_CFLAGS@ @XPM_CFLAGS@
41
 
XLIB = @X_LIBS@ @XPM_LIBS@ -lX11 @X_EXTRA_LIBS@
42
 
COMPILE = $(CXX) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CXXFLAGS) $(DEBUG) $(DINCLUDE) $(XINC) -I$(basedir) -I$(srcdir) -I.
43
 
LINK = @LINKER@ $(LDFLAGS)
44
22
 
45
23
VERNAME = rxvt-unicode-$(VERSION)
46
24
 
47
25
srcdir =        @srcdir@
48
26
VPATH =         @srcdir@
49
 
.PATH:          @srcdir@
50
27
 
51
28
first_rule: all
52
29
dummy:
53
30
 
54
31
subdirs = src doc
55
 
allsubdirs = $(subdirs)
56
 
 
57
 
DIST =  INSTALL README.configure configure Makefile Makefile.in ChangeLog
58
 
 
59
 
MKDIR = $(srcdir)/mkinstalldirs
60
32
 
61
33
#-------------------------------------------------------------------------
62
34
 
63
35
all allbin alldoc tags:
64
36
        @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
65
37
 
66
 
realclean: clean
67
 
        rm -f config.h config.status config.log libtool
 
38
distclean realclean: distclean-local
68
39
 
69
 
clean:
70
 
        rm -f *~ config.cache
71
 
        rm -f -r autom4te.cache
 
40
clean distclean realclean:
72
41
        @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
73
42
 
74
43
#
77
46
rxvt:
78
47
        (cd src; ${MAKE})
79
48
 
80
 
tests:
81
 
        (cd src/test; ${MAKE} tests)
82
 
 
83
49
#-------------------------------------------------------------------------
84
50
configure: configure.ac aclocal.m4 config.h.in
85
51
        cd $(srcdir); ./autogen.sh
91
57
config.h.in: configure.ac
92
58
        cd $(srcdir); ./autogen.sh
93
59
 
94
 
installdirs:
95
 
        $(MKDIR) $(DESTDIR)$(bindir)
96
 
        $(MKDIR) $(DESTDIR)$(mandir)
97
 
 
98
 
install: installdirs
 
60
install:
99
61
        @for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done
100
62
 
101
63
check: all
106
68
 
107
69
cleandir: realclean
108
70
 
109
 
# distclean goal is for making a clean source tree, but if you have run
110
 
# configure from a different directory, then doesn't destroy all your
111
 
# hardly compiled and linked stuff. That's why there is always $(srcdir)/
112
 
# In that case most of those commands do nothing, except cleaning *~
113
 
# and cleaning source links.
114
 
distclean:
115
 
        (cd $(srcdir); rm -f *~ config.cache config.h config.log config.status libtool)
116
 
        @for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done
117
 
        (cd $(srcdir); rm -f Makefile)
 
71
distclean-local:
 
72
        rm -f *~ config.cache config.h config.log config.status libtool
 
73
        rm -f Makefile
118
74
 
119
75
distdir:
120
76
        cd doc && $(MAKE) distdepend