forked from Imagelibrary/rtems
* Makefile.am, gen_section: Integrate Rate Monotonic Statistics and Period Usage into Rate Monotonic Manager. Added the following directives: rtems_rate_monotonic_get_statistics, rtems_rate_monotonic_reset_statistics, rtems_rate_montonic_reset_all_statistics, rtems_rate_montonic_report_statistics, and rtems_object_get_name. Obsoleted the rtems/rtmonuse.h file as a public interface. * rtmonuse.t: Removed.
40 lines
761 B
Makefile
40 lines
761 B
Makefile
#
|
|
# COPYRIGHT (c) 1988-2002.
|
|
# On-Line Applications Research Corporation (OAR).
|
|
# All rights reserved.
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
PROJECT = new_chapters
|
|
EDITION = 1
|
|
|
|
include $(top_srcdir)/project.am
|
|
include $(top_srcdir)/main.am
|
|
|
|
GENERATED_FILES = error.texi monitor.texi
|
|
|
|
COMMON_FILES += $(top_srcdir)/common/cpright.texi
|
|
|
|
FILES =
|
|
|
|
info_TEXINFOS = new_chapters.texi
|
|
new_chapters_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
|
|
|
|
error.texi: error.t
|
|
$(BMENU2) -p "" \
|
|
-u "Top" \
|
|
-n "" < $< > $@
|
|
|
|
monitor.texi: monitor.t
|
|
$(BMENU2) -p "" \
|
|
-u "Top" \
|
|
-n "" < $< > $@
|
|
|
|
noinst_SCRIPTS = gen_section
|
|
|
|
EXTRA_DIST = error.t monitor.t STATUS TODO \
|
|
$(noinst_SCRIPTS)
|
|
|
|
CLEANFILES += new_chapters.info new_chapters.info-?
|