From 8c0949c9258e3ed18e89152890d7d60ec84d09d4 Mon Sep 17 00:00:00 2001 From: rrt Date: Thu, 15 Jun 2000 09:24:49 +0000 Subject: [PATCH] [project @ 2000-06-15 09:24:49 by rrt] Fixed typo: .hs left out of .SUFFIXES list. --- ghc/docs/users_guide/using.sgml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/ghc/docs/users_guide/using.sgml b/ghc/docs/users_guide/using.sgml index 214eabd..4ba150d 100644 --- a/ghc/docs/users_guide/using.sgml +++ b/ghc/docs/users_guide/using.sgml @@ -1064,8 +1064,7 @@ It is worth noting that on Windows, because each package is built as a DLL, and -It is reasonably straightforward to set up a Makefile to use with -GHC, assuming you name your source files the same as your modules. +It is reasonably straightforward to set up a Makefile to use with GHC, assuming you name your source files the same as your modules. Thus: @@ -1078,7 +1077,7 @@ HC_OPTS = -cpp $(EXTRA_HC_OPTS) SRCS = Main.lhs Foo.lhs Bar.lhs OBJS = Main.o Foo.o Bar.o -.SUFFIXES : .o .hi .lhs .hc .s +.SUFFIXES : .o .hs .hi .lhs .hc .s cool_pgm : $(OBJS) rm $@ -- 1.7.10.4