source: rtems/doc/tools/src2html/Makefile @ 7c88bb74

4.104.114.84.95
Last change on this file since 7c88bb74 was 7c88bb74, checked in by Joel Sherrill <joel.sherrill@…>, on 04/14/98 at 21:20:31

RTEMS stuff now browseable for 1st time. Not completed.

  • Property mode set to 100644
File size: 585 bytes
Line 
1#
2#  COPYRIGHT (c) 1988-1998.
3#  On-Line Applications Research Corporation (OAR).
4#  All rights reserved.
5#
6#  $Id$
7#
8
9CC=gcc
10CFLAGS=-g
11
12PROGS=ctags-wr ctags-new ctags src2html
13
14SRC2HTMLDIR=src2html1.4a
15
16all:  tools
17
18tools: $(PROGS)
19        chmod +x $(PROGS)
20
21ctags-wr:
22        cp ../$(SRC2HTMLDIR)/ctags-wr .
23
24ctags-new:
25        cd ../$(SRC2HTMLDIR)/Ctags ; gmake
26        cp ../$(SRC2HTMLDIR)/Ctags/ctags-new .
27
28# EMACS ctags with Ada awareness
29ctags:
30        cp ../$(SRC2HTMLDIR)/ctags-emacs/ctags ctags
31
32src2html:
33        cp ../$(SRC2HTMLDIR)/src2html .
34
35clean:
36        rm -f $(PROGS)
37        cd ../$(SRC2HTMLDIR)/Ctags ; gmake clean
38
Note: See TracBrowser for help on using the repository browser.