diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-12-16 23:06:06 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-12-16 23:06:06 +0000 |
commit | 79359bda3f237158584ca2a1e12d55e1b3f08a18 (patch) | |
tree | 65b6b87b5019d43a592ba9b36e39a1eec6b2b77a /gnu/usr.bin | |
parent | 81a88c2c5934d7bd1ea9b08fb3bdbb0d4ade3799 (diff) |
build old info files; ok espie
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/gas/Makefile | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/gnu/usr.bin/gas/Makefile b/gnu/usr.bin/gas/Makefile index 2bb7b10912b..04b89d0bdf5 100644 --- a/gnu/usr.bin/gas/Makefile +++ b/gnu/usr.bin/gas/Makefile @@ -1,12 +1,9 @@ -# $OpenBSD: Makefile,v 1.6 2001/07/25 23:23:36 miod Exp $ +# $OpenBSD: Makefile,v 1.7 2005/12/16 23:06:05 deraadt Exp $ # $NetBSD: Makefile,v 1.25 1997/10/25 10:10:35 lukem Exp $ # @(#)Makefile 6.1 (Berkeley) 3/3/91 TARGET_MACHINE_ARCH?= $(MACHINE_ARCH) -.if (${TARGET_MACHINE_ARCH} == "i386") || \ - (${TARGET_MACHINE_ARCH} == "m68k") || \ - (${TARGET_MACHINE_ARCH} == "ns32k") || \ - (${TARGET_MACHINE_ARCH} == "sparc") || \ +.if (${TARGET_MACHINE_ARCH} == "m68k") || \ (${TARGET_MACHINE_ARCH} == "vax") || \ (${TARGET_MACHINE_ARCH} == "m88k") .if exists(config/Makefile.$(TARGET_MACHINE_ARCH)) @@ -84,4 +81,12 @@ CLEANFILES+= ${CONF_HEADERS} MAN= as.1 +all: + (cd ${.CURDIR}/doc; m4 pretex.m4 none.m4 all.m4 as.texinfo) > as-all.texinfo + makeinfo --split-size 200000 -o as.info as-all.texinfo + +afterinstall: as.info + ${INSTALL} ${INSTALL_COPY} -o ${DOCOWN} -g ${DOCGRP} -m ${DOCMODE} \ + as.info as.info-1 ${DESTDIR}/usr/share/info/ + .include <bsd.prog.mk> |