File: Makefile.am

package info (click to toggle)
grub 0.5.93.1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 2,348 kB
  • ctags: 3,759
  • sloc: ansic: 15,606; sh: 2,024; asm: 1,100; perl: 291; makefile: 166
file content (18 lines) | stat: -rw-r--r-- 546 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
info_TEXINFOS = grub.texi multiboot.texi
man_MANS = grub.8
HELP2MAN = help2man
noinst_SCRIPTS = $(HELP2MAN)

EXTRA_DIST = menu.lst $(man_MANS) $(noinst_SCRIPTS)

# FIXME: Use this rule until Debian has the new Texinfo.
grub.info: grub.texi
	@cd $(srcdir) && rm -f $@ $@-[0-9] $@-[0-9][0-9]
	cd $(srcdir) \
	  && sed 's/@command/@file/g; s/ifnottex/ifinfo/' grub.texi | $(MAKEINFO)

if MAINTAINER_MODE
$(srcdir)/grub.8: ../grub/grub $(srcdir)/$(HELP2MAN)
	$(PERL) $(srcdir)/$(HELP2MAN) --name="the grub shell" \
		--section=8 --output=$@ $<
endif