summaryrefslogtreecommitdiffstats
path: root/doc/tools
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-04-14 16:08:47 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-04-14 16:08:47 +0000
commitbf09257a9524f3cad0a0b8d15eafbd0cc00c97fd (patch)
tree9f53ccb6be5fa44d2a8302e5682bdbe8225324d4 /doc/tools
parentNew files (diff)
downloadrtems-bf09257a9524f3cad0a0b8d15eafbd0cc00c97fd.tar.bz2
switched to gcc
Diffstat (limited to 'doc/tools')
-rw-r--r--doc/tools/src2html1.4a/Ctags/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/tools/src2html1.4a/Ctags/Makefile b/doc/tools/src2html1.4a/Ctags/Makefile
index da7a148bb1..c6dd7f0d6a 100644
--- a/doc/tools/src2html1.4a/Ctags/Makefile
+++ b/doc/tools/src2html1.4a/Ctags/Makefile
@@ -1,11 +1,14 @@
# @(#)Makefile 5.6 (Berkeley) 5/11/90
+CC=gcc
+
PROG= ctags-new
-CFLAGS+=-I.
+CFLAGS+=-I. -g
+
SRCS= C.c ctags.c fortran.c lisp.c print.c tree.c yacc.c strerror.c
ctags: C.o ctags.o fortran.o lisp.o print.o tree.o yacc.o strerror.o
- cc -o ctags-new C.o ctags.o fortran.o lisp.o print.o tree.o yacc.o \
+ $(CC) -o ctags-new C.o ctags.o fortran.o lisp.o print.o tree.o yacc.o \
strerror.o
clean: