Changeset 15c8c37 in rtems


Ignore:
Timestamp:
11/09/99 16:22:36 (24 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
6682008
Parents:
b671c6a
Message:

Integrated into main tree.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/itron3.0/Makefile

    rb671c6a r15c8c37  
    88
    99PROJECT=itron
    10 TEXI2DVI=../tools/texi2dvi
    11 MAKEINFO=makeinfo
    12 TEXI2WWW=../tools/texi2www
    13 BMENU=../tools/bmenu
    14 TEXI2WWW_ARGS=-dirfile ../../../index.html \
    15           -header ../tools/rtems_header.html \
    16           -footer ../tools/rtems_footer.html \
    17           -icons  .
    1810
     11include ../Make.config
    1912
    20 all: html info ps
     13all: html info ps pdf
     14
     15dirs:
     16        $(make-dirs)
    2117
    2218COMMON_FILES=
     
    2622    task.texi tasksync.texi semaphore.texi eventflags.texi mailbox.texi \
    2723    msgbuffer.texi rendezvous.texi interrupt.texi memorypool.texi \
    28     fixedblock.texi time.texi config.texi network.texi \
    29     psxmsg.texi psxsem.texi
     24    fixedblock.texi time.texi config.texi network.texi
    3025
    3126FILES= $(PROJECT).texi \
     
    4338pdf: $(PROJECT).pdf
    4439       
     40$(PROJECT).pdf: $(FILES)
     41        $(TEXI2PDF) $(PROJECT).texi
     42        cp $(PROJECT).pdf $(WWW_INSTALL)/$(PROJECT)
     43
    4544$(PROJECT).ps: $(PROJECT).dvi
    4645        dvips -o $(PROJECT).ps $(PROJECT).dvi
     46        cp $(PROJECT).ps $(WWW_INSTALL)/$(PROJECT)
    4747
    4848$(PROJECT).dvi: $(FILES)
    4949        $(TEXI2DVI) $(PROJECT).texi
    50 
    51 $(PROJECT).pdf: $(FILES)
    52         $(TEXI2DVI) $(PROJECT).texi
     50        cp $(PROJECT).dvi $(WWW_INSTALL)/$(PROJECT)
    5351
    5452html: $(FILES)
    5553        -mkdir -p html
    56         cp $(wildcard ../tools/*.gif) html
    57         $(TEXI2WWW) $(TEXI2WWW_ARGS) -dir html $(PROJECT).texi
     54        -mkdir -p $(WWW_INSTALL)/$(PROJECT)
     55        $(TEXI2WWW) $(TEXI2WWW_ARGS) -dir $(WWW_INSTALL)/$(PROJECT) \
     56            $(PROJECT).texi
    5857
    5958clean:
     
    133132            -n "" ${*}.t
    134133
    135 psxmsg.texi: psxmsg.t Makefile
    136         $(BMENU) -p "" \
    137             -u "Top" \
    138             -n "" ${*}.t
    139 
    140 psxsem.texi: psxsem.t Makefile
    141         $(BMENU) -p "" \
    142             -u "Top" \
    143             -n "" ${*}.t
    144 
Note: See TracChangeset for help on using the changeset viewer.