1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
|
# ./Makefile.in -*- Makefile -*-
DATE=@DATE@
VERSION=@VERSION@
RXVTNAME=@RXVTNAME@
SHELL = /bin/sh
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
libdir = @libdir@
includedir = @includedir@
man1dir = @mandir@/man1
man1ext = 1
man3dir = @mandir@/man3
man3ext = 3
man7dir = @mandir@/man7
man7ext = 7
CC = @CC@
CXX = @CXX@
CPP = @CPP@
MV = @MV@
CP = @CP@
LN = @LN@
SED = @SED@
AWK = @AWK@
ECHO = @ECHO@
CMP = @CMP@
TBL = @TBL@
PERL = @PERL@
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL@ -m 755
INSTALL_DATA = @INSTALL@ -m 644
CXXFLAGS = @CXXFLAGS@
CPPFLAGS = @CPPFLAGS@ @XPM_CPPFLAGS@
LDFLAGS = @LDFLAGS@
DEFS = @DEFS@
LIBS = @LIBS@
DINCLUDE = @DINCLUDE@
DLIB = @DLIB@
XINC = @X_CFLAGS@ @XPM_CFLAGS@
XLIB = @X_LIBS@ @XPM_LIBS@ -lX11 @X_EXTRA_LIBS@
COMPILE = $(CXX) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CXXFLAGS) $(DEBUG) $(DINCLUDE) $(XINC) -I$(basedir) -I$(srcdir) -I.
LINK = @LINKER@ $(LDFLAGS)
VERNAME = rxvt-unicode-$(VERSION)
srcdir = @srcdir@
VPATH = @srcdir@
.PATH: @srcdir@
first_rule: all
dummy:
subdirs = src doc
allsubdirs = $(subdirs)
DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog
MKDIR = $(srcdir)/mkinstalldirs
#-------------------------------------------------------------------------
all allbin alldoc tags:
@for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
realclean: clean
rm -f config.h config.status config.log libtool
clean:
rm -f *~ config.cache
rm -f -r autom4te.cache
@for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
#
# entry points for other programs
#
rxvt:
(cd src; ${MAKE})
tests:
(cd src/test; ${MAKE} tests)
#-------------------------------------------------------------------------
configure: configure.ac aclocal.m4 config.h.in
cd $(srcdir); ./autogen.sh
config.status:
if test -x config.status; then config.status --recheck; \
else $(SHELL) configure; fi
config.h.in: configure.ac
cd $(srcdir); ./autogen.sh
installdirs:
$(MKDIR) $(DESTDIR)$(bindir)
$(MKDIR) $(DESTDIR)$(mandir)
install: installdirs
@for I in $(subdirs); do (cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@) || exit 1; done
check: all
echo "no tests"
Makefiles:
$(SHELL) config.status
cleandir: realclean
# distclean goal is for making a clean source tree, but if you have run
# configure from a different directory, then doesn't destroy all your
# hardly compiled and linked stuff. That's why there is always $(srcdir)/
# In that case most of those commands do nothing, except cleaning *~
# and cleaning source links.
distclean:
(cd $(srcdir); rm -f *~ config.cache config.h config.log config.status libtool)
@for I in $(allsubdirs); do (cd $$I; $(MAKE) $@) || exit 1; done
(cd $(srcdir); rm -f Makefile)
distdir:
cd doc && $(MAKE) distdepend
cd src && $(MAKE) depend
rm -rf $(VERNAME)
mkdir $(VERNAME)
rsync -aR `cat MANIFEST` $(VERNAME)/.
tar.gz: distdir
tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz
rm -rf $(VERNAME)
tar.bz2: distdir
tar cvf - $(VERNAME) | bzip2 -vf9 > $(VERNAME).tar.bz2
rm -rf $(VERNAME)
dist: tar.bz2
# ------------------------------------------------------------------------
|