ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/Makefile.in
Revision: 1.22
Committed: Tue Jun 12 23:36:23 2007 UTC (16 years, 11 months ago) by ayin
Branch: MAIN
Changes since 1.21: +3 -7 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 # ./Makefile.in -*- Makefile -*-
2
3 DATE=@DATE@
4 VERSION=@VERSION@
5 RXVTNAME=@RXVTNAME@
6 SHELL = /bin/sh
7 prefix = @prefix@
8 exec_prefix = @exec_prefix@
9 bindir = @bindir@
10 libdir = @libdir@
11 includedir = @includedir@
12 man1dir = @mandir@/man1
13 man1ext = 1
14 man3dir = @mandir@/man3
15 man3ext = 3
16 man7dir = @mandir@/man7
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 PERL = @PERL@
30 INSTALL = @INSTALL@
31 INSTALL_PROGRAM = @INSTALL@ -m 755
32 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
45 VERNAME = rxvt-unicode-$(VERSION)
46
47 srcdir = @srcdir@
48 VPATH = @srcdir@
49 .PATH: @srcdir@
50
51 first_rule: all
52 dummy:
53
54 subdirs = src doc
55 allsubdirs = $(subdirs)
56
57 DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog
58
59 MKDIR = $(srcdir)/mkinstalldirs
60
61 #-------------------------------------------------------------------------
62
63 all allbin alldoc tags:
64 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
65
66 distclean realclean: distclean-local
67
68 clean distclean realclean:
69 @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
70
71 #
72 # entry points for other programs
73 #
74 rxvt:
75 (cd src; ${MAKE})
76
77 tests:
78 (cd src/test; ${MAKE} tests)
79
80 #-------------------------------------------------------------------------
81 configure: configure.ac aclocal.m4 config.h.in
82 cd $(srcdir); ./autogen.sh
83
84 config.status:
85 if test -x config.status; then config.status --recheck; \
86 else $(SHELL) configure; fi
87
88 config.h.in: configure.ac
89 cd $(srcdir); ./autogen.sh
90
91 installdirs:
92 $(MKDIR) $(DESTDIR)$(bindir)
93 $(MKDIR) $(DESTDIR)$(mandir)
94
95 install: installdirs
96 @for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done
97
98 check: all
99 echo "no tests"
100
101 Makefiles:
102 $(SHELL) config.status
103
104 cleandir: realclean
105
106 # distclean goal is for making a clean source tree, but if you have run
107 # configure from a different directory, then doesn't destroy all your
108 # hardly compiled and linked stuff. That's why there is always $(srcdir)/
109 # In that case most of those commands do nothing, except cleaning *~
110 # and cleaning source links.
111 distclean-local:
112 rm -f *~ config.cache config.h config.log config.status libtool
113 rm -f Makefile
114
115 distdir:
116 cd doc && $(MAKE) distdepend
117 cd src && $(MAKE) depend
118 rm -rf $(VERNAME)
119 mkdir $(VERNAME)
120 rsync -aR `cat MANIFEST` $(VERNAME)/.
121
122 tar.gz: distdir
123 tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz
124 rm -rf $(VERNAME)
125
126 tar.bz2: distdir
127 tar cvf - $(VERNAME) | bzip2 -vf9 > $(VERNAME).tar.bz2
128 rm -rf $(VERNAME)
129
130 dist: tar.bz2
131
132 # ------------------------------------------------------------------------