forked from Imagelibrary/rtems
35 lines
551 B
Makefile
35 lines
551 B
Makefile
#
|
|
# COPYRIGHT (c) 1988-1998.
|
|
# On-Line Applications Research Corporation (OAR).
|
|
# All rights reserved.
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
PROJECT=browseable_rtems
|
|
DISTRIBUTION_LEVEL=internal
|
|
|
|
include ../Make.config
|
|
|
|
all: html info ps
|
|
|
|
dirs:
|
|
$(make-dirs)
|
|
|
|
COMMON_FILES=../common/cpright.texi
|
|
|
|
FILES= clock.texi cond.texi key.texi mutex.texi $(PROJECT).texi preface.texi \
|
|
sched.texi signal.texi thread.texi $(COMMON_FILES)
|
|
|
|
INFOFILES=$(wildcard $(PROJECT) $(PROJECT)-*)
|
|
|
|
info:
|
|
|
|
ps:
|
|
|
|
html: dirs
|
|
-mkdir -p $(WWW_INSTALL)/$(PROJECT)
|
|
$(SRC2HTML) -d3 RTEMS.test
|
|
|
|
clean:
|