From 3df56f52c1c877ec1f80b78e42530a8022e36c21 Mon Sep 17 00:00:00 2001 From: andy <unknown> Date: Fri, 19 Nov 1999 15:33:34 +0000 Subject: [PATCH] [project @ 1999-11-19 15:33:34 by andy] Adding Makefile for Hugs lib directory. --- ghc/interpreter/lib/Makefile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 ghc/interpreter/lib/Makefile diff --git a/ghc/interpreter/lib/Makefile b/ghc/interpreter/lib/Makefile new file mode 100644 index 000000000000..366ad5b064c5 --- /dev/null +++ b/ghc/interpreter/lib/Makefile @@ -0,0 +1,24 @@ +# -------------------------------------------------------------------------- # +# $Id: Makefile,v 1.1 1999/11/19 15:33:34 andy Exp $ +# -------------------------------------------------------------------------- # + +TOP = ../.. +include $(TOP)/mk/boilerplate.mk + +LIBS = List.lhs Ix.lhs Complex.lhs Char.lhs Ratio.lhs Random.lhs \ + Array.lhs Maybe.lhs Monad.lhs Numeric.lhs Directory.lhs \ + System.lhs Locale.lhs CPUTime.lhs IO.lhs Pretty.lhs \ + GetOpt.lhs Bits.lhs Word.lhs Addr.lhs NumExts.lhs Int.lhs + +hugslib :: $(LIBS) + + +HUGSCPP = ../../utils/hscpp/hscpp -D__HUGS__ -DUSE_REPORT_PRELUDE + +%.lhs :: $(GHC_LIB_DIR)/std/%.lhs + $(HUGSCPP) -I../includes $< > $*.lhs + +%.lhs :: $(GHC_LIB_DIR)/exts/%.lhs + $(HUGSCPP) -I../includes $< > $*.lhs + +include $(TOP)/mk/target.mk -- GitLab