diff options
author | Justin M. Seger <jseger@FreeBSD.org> | 1997-11-22 00:30:17 +0000 |
---|---|---|
committer | Justin M. Seger <jseger@FreeBSD.org> | 1997-11-22 00:30:17 +0000 |
commit | aa4ecfd9d2c8e487af06b147d53d746e2455863c (patch) | |
tree | f3029f844fd93ac543f697e28a4264c789d63609 /textproc/c2html/files/patch-aa | |
parent | Remove converters/c2html. It needs to be reimported in textproc. (diff) |
Reimport c2html v0.1 into the ports/textproc/c2html directory.
Submitted by: andy@icc.surw.chel.su
Notes
Notes:
svn path=/head/; revision=8738
Diffstat (limited to 'textproc/c2html/files/patch-aa')
-rw-r--r-- | textproc/c2html/files/patch-aa | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/textproc/c2html/files/patch-aa b/textproc/c2html/files/patch-aa new file mode 100644 index 000000000000..2f52efb3978b --- /dev/null +++ b/textproc/c2html/files/patch-aa @@ -0,0 +1,18 @@ +--- Makefile.orig Mon Sep 1 22:18:51 1997 ++++ Makefile Sun Nov 16 17:24:44 1997 +@@ -2,13 +2,13 @@ + + CC = gcc + FLEX = flex +-CFLAGS = -O2 -Wall -pedantic -ansi ++CFLAGS+= -Wall -pedantic -ansi + + all: c2html + + c2html: c2html.l + $(FLEX) c2html.l +- $(CC) $(CFLAGS) -o c2html lex.yy.c -static -lfl ++ $(CC) $(CFLAGS) -o c2html lex.yy.c -lfl + clean: + rm -rf *.o *~ c2html + |