summaryrefslogtreecommitdiff
path: root/support/rtf2html/Makefile
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /support/rtf2html/Makefile
Initial commit
Diffstat (limited to 'support/rtf2html/Makefile')
-rw-r--r--support/rtf2html/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/support/rtf2html/Makefile b/support/rtf2html/Makefile
new file mode 100644
index 0000000000..ad61d9a097
--- /dev/null
+++ b/support/rtf2html/Makefile
@@ -0,0 +1,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
+