From 1b94e16408b1fefea0bcfddc96706022ff3e5d83 Mon Sep 17 00:00:00 2001 From: sf-exg Date: Sat, 22 Sep 2012 15:53:37 +0000 Subject: Cosmetics. --- Makefile.in | 87 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 Makefile.in diff --git a/Makefile.in b/Makefile.in new file mode 100644 index 0000000..eee5969 --- /dev/null +++ b/Makefile.in @@ -0,0 +1,87 @@ +# ./Makefile.in -*- Makefile -*- + +DATE = @DATE@ +VERSION = @VERSION@ +RXVTNAME = @RXVTNAME@ +SHELL = /bin/sh +prefix = @prefix@ +exec_prefix = @exec_prefix@ +bindir = @bindir@ +libdir = @libdir@ +man1dir = @mandir@/man1 +man1ext = 1 +man3dir = @mandir@/man3 +man3ext = 3 +man7dir = @mandir@/man7 +man7ext = 7 +PERL = @PERL@ +INSTALL = @INSTALL@ +INSTALL_PROGRAM = @INSTALL@ -m 755 +INSTALL_DATA = @INSTALL@ -m 644 + +VERNAME = rxvt-unicode-$(VERSION) + +srcdir = @srcdir@ +VPATH = @srcdir@ + +first_rule: all +dummy: + +subdirs = src doc + +RECURSIVE_TARGETS = all allbin alldoc tags clean distclean realclean install + +#------------------------------------------------------------------------- + +$(RECURSIVE_TARGETS): + @for I in $(subdirs); do (cd $$I; $(MAKE) $@) || exit 1; done + +distclean realclean: distclean-local + +# +# entry points for other programs +# +rxvt: + (cd src; $(MAKE)) + +#------------------------------------------------------------------------- +configure: configure.ac aclocal.m4 libev/libev.m4 libptytty/ptytty.m4 + cd $(srcdir); ./autogen.sh + +config.status: + if test -x config.status; then config.status --recheck; \ + else $(SHELL) configure; fi + +config.h.in: configure.ac aclocal.m4 libev/libev.m4 libptytty/ptytty.m4 + cd $(srcdir); ./autogen.sh + +check: all + echo "no tests" + +Makefiles: + $(SHELL) config.status + +cleandir: realclean + +distclean-local: + rm -f config.cache config.h config.log config.status + rm -f Makefile + +distdir: + cd doc && $(MAKE) distdepend + cd src && $(MAKE) depend + rm -rf $(VERNAME) + mkdir $(VERNAME) + rsync -aR --copy-unsafe-links `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 + +# ------------------------------------------------------------------------ -- cgit v1.2.3