summaryrefslogtreecommitdiff
path: root/support/rtf2html/Makefile
blob: ad61d9a09739489c0b491a56f7222a524609a897 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#Genmake v1.03 pl2  11/12/91  Copyright(c) 1990, 1991 by Kyle Saunders
CC= cc
CFLAGS= -g
OFILES= \
	rtf2html.o
#
rtf2html:	$(OFILES)
		$(CC) $(CFLAGS) -o rtf2html $(OFILES)

rtf2html.o:	rtf2html.c
		$(CC) $(CFLAGS) -c rtf2html.c