summaryrefslogtreecommitdiffstats
path: root/doc/tools
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-04-14 17:09:06 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-04-14 17:09:06 +0000
commitf36caed23878fe94badba22cc76b6296dac071c2 (patch)
tree3b380307bf2ee079f1f11f5a86308a3ef441386f /doc/tools
parentbase changes for moving and better error checking (diff)
downloadrtems-f36caed23878fe94badba22cc76b6296dac071c2.tar.bz2
building up src2html
Diffstat (limited to 'doc/tools')
-rw-r--r--doc/tools/src2html/Makefile37
1 files changed, 37 insertions, 0 deletions
diff --git a/doc/tools/src2html/Makefile b/doc/tools/src2html/Makefile
new file mode 100644
index 0000000000..8d9c4a578c
--- /dev/null
+++ b/doc/tools/src2html/Makefile
@@ -0,0 +1,37 @@
+#
+# COPYRIGHT (c) 1988-1998.
+# On-Line Applications Research Corporation (OAR).
+# All rights reserved.
+#
+# $Id$
+#
+
+CC=gcc
+CFLAGS=-g
+
+PROGS=ctags-wr ctags-new ctags-emacs src2html
+
+SRC2HTMLDIR=src2html1.4a
+
+all: tools
+
+tools: $(PROGS)
+ chmod +x $(PROGS)
+
+ctags-wr:
+ cp ../$(SRC2HTMLDIR)/ctags-wr .
+
+ctags-new:
+ cd ../$(SRC2HTMLDIR)/Ctags ; gmake
+ cp ../$(SRC2HTMLDIR)/Ctags/ctags-new .
+
+ctags-emacs:
+ cp ../$(SRC2HTMLDIR)/ctags-emacs/ctags ctags
+
+src2html:
+ cp ../$(SRC2HTMLDIR)/src2html .
+
+clean:
+ rm -f $(PROGS)
+ cd ../$(SRC2HTMLDIR)/Ctags ; gmake clean
+