1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-15 23:50:44 +00:00
freebsd-ports/textproc/c2html/files/patch-aa
Steve Price dd040634c4 Update to support COMPRESSION among other things.
PR:		9959
Reviewed by:	maintainer
Submitted by:	Martin KammerHofer <dada@sbox.tu-graz.ac.at>
1999-02-22 04:22:22 +00:00

19 lines
387 B
Plaintext

--- 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 -DCOMPRESSION=1
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