forked from Imagelibrary/rtems
* Makefile.am, develenv.texi: Relect generating .texi from .t's. * direct.t, sample.t, utils.t: New files. * direct.texi, sample.texi, utils.texi: Removed. Now generated from corresponding .t files which are in the process of being updated. This commit is a anspshot of the update effort.
40 lines
968 B
Makefile
40 lines
968 B
Makefile
#
|
|
# COPYRIGHT (c) 1988-2002.
|
|
# On-Line Applications Research Corporation (OAR).
|
|
# All rights reserved.
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
|
|
PROJECT = develenv
|
|
EDITION = 1
|
|
|
|
include $(top_srcdir)/project.am
|
|
include $(top_srcdir)/main.am
|
|
|
|
FILES = compile.texi direct.texi intro.texi sample.texi utils.texi
|
|
|
|
GENERATED_FILES = direct.texi sample.texi utils.texi
|
|
|
|
COMMON_FILES = $(top_srcdir)/common/setup.texi \
|
|
$(top_srcdir)/common/cpright.texi
|
|
|
|
info_TEXINFOS = develenv.texi
|
|
develenv_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
|
|
|
|
$(srcdir)/direct.texi: direct.t
|
|
$(BMENU2) -p "Introduction" \
|
|
-u "Top" \
|
|
-n "Sample Applications" < $< > $@
|
|
|
|
$(srcdir)/sample.texi: sample.t
|
|
$(BMENU2) -p "Directory Structure Test Suite Source Directory" \
|
|
-u "Top" \
|
|
-n "RTEMS Specific Utilities" < $< > $@
|
|
|
|
$(srcdir)/utils.texi: utils.t
|
|
$(BMENU2) -p "Sample Applications Paranoia Floating Point Application" \
|
|
-u "Top" \
|
|
-n "Command and Variable Index" < $< > $@
|