mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-11-16 12:34:45 +00:00
Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
38 lines
914 B
Makefile
38 lines
914 B
Makefile
#
|
|
# COPYRIGHT (c) 1988-2002.
|
|
# On-Line Applications Research Corporation (OAR).
|
|
# All rights reserved.
|
|
|
|
PROJECT = develenv
|
|
|
|
include $(top_srcdir)/project.am
|
|
include $(top_srcdir)/main.am
|
|
|
|
FILES = direct.texi intro.texi sample.texi utils.texi
|
|
|
|
GENERATED_FILES = direct.texi sample.texi utils.texi
|
|
|
|
COMMON_FILES += $(top_srcdir)/common/cpright.texi
|
|
|
|
info_TEXINFOS = develenv.texi
|
|
develenv_TEXINFOS = $(FILES) $(COMMON_FILES) $(GENERATED_FILES)
|
|
|
|
direct.texi: direct.t
|
|
$(BMENU2) -p "Introduction" \
|
|
-u "Top" \
|
|
-n "Sample Applications" < $< > $@
|
|
|
|
sample.texi: sample.t
|
|
$(BMENU2) -p "Directory Structure Documentation Directory" \
|
|
-u "Top" \
|
|
-n "RTEMS Specific Utilities" < $< > $@
|
|
|
|
utils.texi: utils.t
|
|
$(BMENU2) -p "Sample Applications Network Loopback Test" \
|
|
-u "Top" \
|
|
-n "Command and Variable Index" < $< > $@
|
|
|
|
CLEANFILES += develenv.info
|
|
|
|
EXTRA_DIST = direct.t sample.t utils.t
|