| 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 |
man1dir = @mandir@/man1 |
| 12 |
man1ext = 1 |
| 13 |
man3dir = @mandir@/man3 |
| 14 |
man3ext = 3 |
| 15 |
man7dir = @mandir@/man7 |
| 16 |
man7ext = 7 |
| 17 |
PERL = @PERL@ |
| 18 |
INSTALL = @INSTALL@ |
| 19 |
INSTALL_PROGRAM = @INSTALL@ -m 755 |
| 20 |
INSTALL_DATA = @INSTALL@ -m 644 |
| 21 |
|
| 22 |
VERNAME = rxvt-unicode-$(VERSION) |
| 23 |
|
| 24 |
srcdir = @srcdir@ |
| 25 |
VPATH = @srcdir@ |
| 26 |
|
| 27 |
first_rule: all |
| 28 |
dummy: |
| 29 |
|
| 30 |
subdirs = src doc |
| 31 |
|
| 32 |
RECURSIVE_TARGETS = all allbin alldoc tags clean distclean realclean install |
| 33 |
|
| 34 |
#------------------------------------------------------------------------- |
| 35 |
|
| 36 |
$(RECURSIVE_TARGETS): |
| 37 |
@for I in $(subdirs); do (cd $$I; $(MAKE) $@) || exit 1; done |
| 38 |
|
| 39 |
distclean realclean: distclean-local |
| 40 |
|
| 41 |
# |
| 42 |
# entry points for other programs |
| 43 |
# |
| 44 |
rxvt: |
| 45 |
(cd src; $(MAKE)) |
| 46 |
|
| 47 |
#------------------------------------------------------------------------- |
| 48 |
configure: configure.ac aclocal.m4 libev/libev.m4 |
| 49 |
cd $(srcdir); ./autogen.sh |
| 50 |
|
| 51 |
config.status: |
| 52 |
if test -x config.status; then config.status --recheck; \ |
| 53 |
else $(SHELL) configure; fi |
| 54 |
|
| 55 |
config.h.in: configure.ac aclocal.m4 libev/libev.m4 |
| 56 |
cd $(srcdir); ./autogen.sh |
| 57 |
|
| 58 |
check: all |
| 59 |
echo "no tests" |
| 60 |
|
| 61 |
Makefiles: |
| 62 |
$(SHELL) config.status |
| 63 |
|
| 64 |
cleandir: realclean |
| 65 |
|
| 66 |
distclean-local: |
| 67 |
rm -f config.cache config.h config.log config.status |
| 68 |
rm -f Makefile |
| 69 |
|
| 70 |
distdir: |
| 71 |
cd doc && $(MAKE) distdepend |
| 72 |
cd src && $(MAKE) depend |
| 73 |
rm -rf $(VERNAME) |
| 74 |
mkdir $(VERNAME) |
| 75 |
rsync -aR --copy-unsafe-links `cat MANIFEST` $(VERNAME)/. |
| 76 |
|
| 77 |
tar.gz: distdir |
| 78 |
tar cvf - $(VERNAME) | gzip -vf9 > $(VERNAME).tar.gz |
| 79 |
rm -rf $(VERNAME) |
| 80 |
|
| 81 |
tar.bz2: distdir |
| 82 |
tar cvf - $(VERNAME) | bzip2 -vf9 > $(VERNAME).tar.bz2 |
| 83 |
rm -rf $(VERNAME) |
| 84 |
|
| 85 |
dist: tar.bz2 |
| 86 |
|
| 87 |
# ------------------------------------------------------------------------ |