Use rxvt_temp_buf in more places.
[dana/urxvt.git] / Makefile.in
index 9b5767f..491776d 100644 (file)
@@ -15,14 +15,6 @@ man3dir = @mandir@/man3
 man3ext = 3
 man7dir = @mandir@/man7
 man7ext = 7
-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
@@ -38,23 +30,20 @@ dummy:
 
 subdirs = src doc
 
-MKDIR = $(srcdir)/mkinstalldirs
+RECURSIVE_TARGETS = all allbin alldoc tags clean distclean realclean install
 
 #-------------------------------------------------------------------------
 
-all allbin alldoc tags:
-       @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
+$(RECURSIVE_TARGETS):
+       @for I in $(subdirs); do (cd $$I; $(MAKE) $@) || exit 1; done
 
 distclean realclean: distclean-local
 
-clean distclean realclean:
-       @for I in ${subdirs}; do (cd $$I; ${MAKE} $@) || exit 1; done
-
 #
 # entry points for other programs
 #
 rxvt:
-       (cd src; ${MAKE})
+       (cd src; $(MAKE))
 
 #-------------------------------------------------------------------------
 configure: configure.ac aclocal.m4 config.h.in
@@ -67,13 +56,6 @@ config.status:
 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"
 
@@ -83,7 +65,7 @@ Makefiles:
 cleandir: realclean
 
 distclean-local:
-       rm -f *~ config.cache config.h config.log config.status libtool
+       rm -f config.cache config.h config.log config.status
        rm -f Makefile
 
 distdir:
@@ -91,7 +73,7 @@ distdir:
        cd src && $(MAKE) depend
        rm -rf $(VERNAME)
        mkdir $(VERNAME)
-       rsync -aR `cat MANIFEST` $(VERNAME)/.
+       rsync -aR --copy-unsafe-links `cat MANIFEST` $(VERNAME)/.
 
 tar.gz: distdir
        tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz