From: rrt Date: Thu, 15 Jun 2000 09:24:49 +0000 (+0000) Subject: [project @ 2000-06-15 09:24:49 by rrt] X-Git-Tag: Approximately_9120_patches~4194 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=8c0949c9258e3ed18e89152890d7d60ec84d09d4;p=ghc-hetmet.git [project @ 2000-06-15 09:24:49 by rrt] Fixed typo: .hs left out of .SUFFIXES list. --- 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 $@