source: rtems/doc/shell/Makefile.am @ 205a21e

4.115
Last change on this file since 205a21e was 75d16dd8, checked in by Joel Sherrill <joel.sherrill@…>, on 07/23/08 at 22:07:16

2008-07-23 Joel Sherrill <joel.sherrill@…>

  • shell/Makefile.am, shell/rtems.t: Add pthread command.
  • 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#
6#  $Id$
7#
8
9PROJECT = shell
10EDITION = 1
11
12include $(top_srcdir)/project.am
13include $(top_srcdir)/main.am
14
15FILES = shell.texi preface.texi
16
17GENERATED_FILES = confinit.texi general.texi file.texi memory.texi \
18    rtems.texi network.texi
19
20COMMON_FILES += $(top_srcdir)/common/cpright.texi
21
22info_TEXINFOS = shell.texi
23shell_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
24
25confinit.texi: confinit.t
26        $(BMENU2) -p "Preface" \
27            -u "Top" \
28            -n "General Commands" < $< > $@
29
30general.texi: general.t
31        $(BMENU2) -p "Configuration and Initialization rtems_shell_init - initialize the shell" \
32            -u "Top" \
33            -n "File and Directory Commands" < $< > $@
34
35file.texi: file.t
36        $(BMENU2) -p "General Commands exit - exit the shell" \
37            -u "Top" \
38            -n "Memory Commands" < $< > $@
39
40memory.texi: memory.t
41        $(BMENU2) -p "File and Directory Commands cd - alias for chdir" \
42            -u "Top" \
43            -n "RTEMS Specific Commands" < $< > $@
44
45rtems.texi: rtems.t
46        $(BMENU2) -p "Memory Commands malloc - obtain information on C program heap" \
47            -u "Top" \
48            -n "Network Commands" < $< > $@
49
50network.texi: network.t
51        $(BMENU2) -p "RTEMS Specific Commands pthread - display information about POSIX threads" \
52            -u "Top" \
53            -n "Function and Variable Index" < $< > $@
54
55EXTRA_DIST = general.t file.t memory.t rtems.t network.t
56
57CLEANFILES += shell.info shell.info-? shell.info-??
Note: See TracBrowser for help on using the repository browser.