source: rtems/doc/shell/Makefile.am @ b885fe1

4.115
Last change on this file since b885fe1 was b885fe1, checked in by Joel Sherrill <joel.sherrill@…>, on 07/22/13 at 23:29:49

doc/shell/Makefile.am: Fix dependency

  • Property mode set to 100644
File size: 1.5 KB
Line 
1#
2#  COPYRIGHT (c) 1988-2007
3#  On-Line Applications Research Corporation (OAR).
4#  All rights reserved.
5
6PROJECT = shell
7
8include $(top_srcdir)/project.am
9include $(top_srcdir)/main.am
10
11FILES = shell.texi preface.texi
12
13GENERATED_FILES = confinit.texi general.texi file.texi memory.texi \
14    rtems.texi network.texi
15
16COMMON_FILES += $(top_srcdir)/common/cpright.texi
17
18info_TEXINFOS = shell.texi
19shell_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
20
21confinit.texi: confinit.t
22        $(BMENU2) -p "Preface" \
23            -u "Top" \
24            -n "General Commands" < $< > $@
25
26general.texi: general.t
27        $(BMENU2) -p "Configuration and Initialization rtems_shell_init - initialize the shell" \
28            -u "Top" \
29            -n "File and Directory Commands" < $< > $@
30
31file.texi: file.t
32        $(BMENU2) -p "General Commands exit - exit the shell" \
33            -u "Top" \
34            -n "Memory Commands" < $< > $@
35
36memory.texi: memory.t
37        $(BMENU2) -p "File and Directory Commands df - display file system disk space usage" \
38            -u "Top" \
39            -n "RTEMS Specific Commands" < $< > $@
40
41rtems.texi: rtems.t
42        $(BMENU2) -p "Memory Commands malloc - obtain information on C program heap" \
43            -u "Top" \
44            -n "Network Commands" < $< > $@
45
46network.texi: network.t
47        $(BMENU2) -p "RTEMS Specific Commands pthread - display information about POSIX threads" \
48            -u "Top" \
49            -n "Function and Variable Index" < $< > $@
50
51EXTRA_DIST = general.t file.t memory.t rtems.t network.t
52
53CLEANFILES += shell.info shell.info-? shell.info-??
Note: See TracBrowser for help on using the repository browser.