# Makefile for HTML post-processors

CC = gcc -m486 -s

all: fixref html2html

fixref: fixref.c
	gcc -s -o fixref fixref.c -lfl

html2html: html2html.c
	gcc -s -o html2html html2html.c -lfl

install:
	cp html2html fixref ../bin
	chmod 755 ../bin/html2html ../bin/fixref

clean:
	rm -f fixref html2html
