summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsf-exg <sf-exg>2012-09-22 15:53:37 +0000
committersf-exg <sf-exg>2012-09-22 15:53:37 +0000
commit1b94e16408b1fefea0bcfddc96706022ff3e5d83 (patch)
tree3468b5ac8d3c19de415c5709232d7e50beccbeb3
parent2833534eb3c0ab1eb5c94b34729c5778626a7944 (diff)
Cosmetics.
-rw-r--r--Makefile.in87
1 files changed, 87 insertions, 0 deletions
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
+
+# ------------------------------------------------------------------------