From: simonmar Date: Wed, 4 Jul 2001 10:48:16 +0000 (+0000) Subject: [project @ 2001-07-04 10:48:16 by simonmar] X-Git-Tag: nhc98-1-18-release~1224 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=90f46a8830d97c24acecefbfb2a87b70588aa7e8;p=haskell-directory.git [project @ 2001-07-04 10:48:16 by simonmar] bugfix in yesterday's changes. --- diff --git a/Makefile b/Makefile index 5e0d134..25c14b5 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # ----------------------------------------------------------------------------- -# $Id: Makefile,v 1.2 2001/07/03 11:37:49 simonmar Exp $ +# $Id: Makefile,v 1.3 2001/07/04 10:48:16 simonmar Exp $ TOP=../.. include $(TOP)/mk/boilerplate.mk @@ -58,10 +58,10 @@ CLEAN_FILES += $(ALL_HS_OBJS) $(ALL_HS_HIS) all :: $(LIBNAME) -$(ALL_HS_OBJS) : srcs +lib : srcs $(GHC_INPLACE) $(HC_OPTS) --make $(ALL_HS_SRCS) $(ALL_LHS_SRCS) -$(LIBNAME) : $(ALL_HS_OBJS) +$(LIBNAME) : lib $(RM) $@ $(AR) $(AR_OPTS) $@ $(ALL_HS_OBJS) $(RANLIB) $@