source: rtems/doc/tools/src2html/Makefile @ f36caed

4.104.114.84.95
Last change on this file since f36caed was f36caed, checked in by Joel Sherrill <joel.sherrill@…>, on 04/14/98 at 17:09:06

building up src2html

  • Property mode set to 100644
File size: 564 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-emacs 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
28ctags-emacs:
29        cp ../$(SRC2HTMLDIR)/ctags-emacs/ctags ctags
30
31src2html:
32        cp ../$(SRC2HTMLDIR)/src2html .
33
34clean:
35        rm -f $(PROGS)
36        cd ../$(SRC2HTMLDIR)/Ctags ; gmake clean
37
Note: See TracBrowser for help on using the repository browser.