(install-info-gasp): Use $$dir when installing file.
[deliverable/binutils-gdb.git] / gas / doc / Makefile.in
CommitLineData
79a54a5b 1# Makefile for GNU Assembler documentation
730ad1a7 2# Copyright (C) 1987-1993 Free Software Foundation, Inc.
79a54a5b
RP
3
4#This file is part of GNU GAS.
5
6#GNU GAS is free software; you can redistribute it and/or modify
7#it under the terms of the GNU General Public License as published by
8#the Free Software Foundation; either version 2, or (at your option)
9#any later version.
10
11#GNU GAS is distributed in the hope that it will be useful,
12#but WITHOUT ANY WARRANTY; without even the implied warranty of
13#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14#GNU General Public License for more details.
15
16#You should have received a copy of the GNU General Public License
17#along with GNU GAS; see the file COPYING. If not, write to
18#the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
19
20# The targets for external use include:
21# all, doc, proto, install, uninstall, includes, TAGS,
22# clean, cleanconfig, realclean, stage1, stage2, stage3, stage4.
23
24# Variables that exist for you to override.
25# See below for how to change them for certain systems.
26
27srcdir = .
28
29prefix = /usr/local
30
9da59956 31program_transform_name =
03261889
ILT
32exec_prefix = $(prefix)
33bindir = $(exec_prefix)/bin
34libdir = $(exec_prefix)/lib
35
79a54a5b 36datadir = $(prefix)/lib
03261889 37mandir = $(prefix)/man
79a54a5b
RP
38man1dir = $(mandir)/man1
39man2dir = $(mandir)/man2
40man3dir = $(mandir)/man3
41man4dir = $(mandir)/man4
42man5dir = $(mandir)/man5
43man6dir = $(mandir)/man6
44man7dir = $(mandir)/man7
45man8dir = $(mandir)/man8
46man9dir = $(mandir)/man9
03261889 47infodir = $(prefix)/info
79a54a5b
RP
48includedir = $(prefix)/include
49docdir = $(datadir)/doc
50
51SHELL = /bin/sh
52
53INSTALL = install -c
54INSTALL_PROGRAM = $(INSTALL)
55INSTALL_DATA = $(INSTALL)
59f10b34 56INSTALL_XFORM1 = $(INSTALL) -b $(program_transform_name) .1
79a54a5b
RP
57
58AR = ar
59AR_FLAGS = qv
60BISON = bison
61MAKEINFO = makeinfo
59f10b34 62TEXI2DVI = TEXINPUTS=$(TEXIDIR):$$TEXINPUTS texi2dvi
79a54a5b
RP
63RANLIB = ranlib
64
730ad1a7 65# What version of the manual you want; "all" includes everything
79a54a5b
RP
66CONFIG=all
67
79a54a5b 68# Where to find texinfo.tex to format docn with TeX
9da59956 69TEXIDIR = $(srcdir)/../../texinfo
79a54a5b
RP
70
71#### host, target, and site specific Makefile frags come in here.
72##
73
74all:
79a54a5b 75install:
59f10b34 76 $(INSTALL_XFORM1) $(srcdir)/as.1 $(man1dir)/as.1
79a54a5b 77
59f10b34
KR
78info: as.info gasp.info
79dvi: as.dvi gasp.dvi
79a54a5b 80
dcdf81bb
KR
81asconfig.texi: $(CONFIG).texi
82 rm -f asconfig.texi
83 ln -s $(srcdir)/$(CONFIG).texi ./asconfig.texi || \
84 ln $(srcdir)/$(CONFIG).texi ./asconfig.texi || \
85 cp $(srcdir)/$(CONFIG).texi ./asconfig.texi
730ad1a7 86
dcdf81bb 87as.info: $(srcdir)/as.texinfo asconfig.texi
59f10b34 88 $(MAKEINFO) -I$(TEXIDIR) -o as.info $(srcdir)/as.texinfo
79a54a5b 89
59f10b34
KR
90gasp.info: $(srcdir)/gasp.texi
91 $(MAKEINFO) -o gasp.info $(srcdir)/gasp.texi
92
93install-info: install-info-as install-info-gasp
94install-info-as: as.info
95 if [ -r as.info ]; then \
96 dir=. ; \
97 else \
98 dir=$(srcdir) ; \
99 fi ; \
dcdf81bb
KR
100 for i in `cd $$dir ; echo as.info*` ; do \
101 $(INSTALL_DATA) $$dir/$$i $(infodir)/$$i ; \
59f10b34
KR
102 done
103install-info-gasp: gasp.info
104 if [ -r gasp.info ]; then \
105 dir=. ; \
106 else \
107 dir=$(srcdir) ; \
108 fi ; \
dcdf81bb 109 for i in `cd $$dir ; echo gasp.info*` ; do \
f299d06d 110 $(INSTALL_DATA) $$dir/$$i $(infodir)/$$i ; \
79a54a5b
RP
111 done
112
dcdf81bb 113as.dvi: $(srcdir)/as.texinfo asconfig.texi
59f10b34 114 $(TEXI2DVI) $(srcdir)/as.texinfo
730ad1a7 115
59f10b34
KR
116gasp.dvi: $(srcdir)/gasp.texi
117 $(TEXI2DVI) $(srcdir)/gasp.texi
79a54a5b
RP
118
119# ROFF doc targets as.ms, as.mm, as.me
120# (we don't use a variable because we don't trust all makes to handle
121# a var in the target name right).
122# roff output (-ms)
8209a8c4 123# THESE ARE PROBABLY BROKEN until texi2roff extended for Texinfo conditionals
dcdf81bb 124as.ms: $(srcdir)/as.texinfo asconfig.texi
79a54a5b
RP
125 sed -e '/\\input texinfo/d' \
126 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
127 -e 's/{.*,,/{/' \
59f10b34 128 $(srcdir)/as.texinfo | \
79a54a5b
RP
129 texi2roff -ms >as.ms
130
131# roff output (-mm)
dcdf81bb 132as.mm: $(srcdir)/as.texinfo asconfig.texi
79a54a5b
RP
133 sed -e '/\\input texinfo/d' \
134 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
135 -e 's/{.*,,/{/' \
136 -e '/@noindent/d' \
59f10b34 137 $(srcdir)/as.texinfo | \
79a54a5b
RP
138 texi2roff -mm | \
139 sed -e 's/---/\\(em/g' \
140 >as.mm
141
142# roff output (-me)
dcdf81bb 143as.me: $(srcdir)/as.texinfo asconfig.texi
79a54a5b
RP
144 sed -e '/\\input texinfo/d' \
145 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
146 -e 's/{.*,,/{/' \
59f10b34 147 $(srcdir)/as.texinfo | \
79a54a5b
RP
148 texi2roff -me >as.me
149
8209a8c4 150clean: clean-dvi clean-info
f299d06d 151 rm -f asconfig.texi
8209a8c4 152
59f10b34 153distclean:
f299d06d
KR
154 rm -f Makefile config.status asconfig.texi \
155 as.?? as.??s as.aux as.log as.toc \
156 gasp.?? gasp.??s gasp.aux gasp.log gasp.toc
59f10b34 157
8209a8c4 158clean-dvi:
f299d06d 159 rm -f as.?? as.??? gasp.?? gasp.???
8209a8c4 160
79a54a5b 161clean-info:
f299d06d 162 rm -f as.info* gasp.info*
79a54a5b
RP
163
164force:
165
166Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
167 $(SHELL) ./config.status
This page took 0.097312 seconds and 4 git commands to generate.