X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fdriver%2Fghci%2FMakefile;h=9392249f03d78aa3fb25fa51148ef8d344ca84b2;hb=28a464a75e14cece5db40f2765a29348273ff2d2;hp=99b584339263999c848002855a39a956929518a6;hpb=2623b3404c32136e76757a2029192333bdc3e8a8;p=ghc-hetmet.git diff --git a/ghc/driver/ghci/Makefile b/ghc/driver/ghci/Makefile index 99b5843..9392249 100644 --- a/ghc/driver/ghci/Makefile +++ b/ghc/driver/ghci/Makefile @@ -1,5 +1,5 @@ #----------------------------------------------------------------------------- -# $Id: Makefile,v 1.7 2001/07/30 10:40:36 rrt Exp $ +# $Id: Makefile,v 1.11 2005/05/05 00:58:38 sof Exp $ # TOP=../.. @@ -29,12 +29,20 @@ INPLACE_SCRIPT_PROG = ghci-inplace ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32" C_PROG = ghci +C_OBJS += ghci.res +else +C_SRCS= endif SCRIPT_OBJS = ghci.sh INTERP = $(SHELL) SCRIPT_SUBST_VARS = GHCBIN TOPDIROPT +ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32" INSTALL_SCRIPTS += $(SCRIPT_PROG) +else +INSTALL_SCRIPTS += ghcii.sh +INSTALL_PROGS += $(C_PROG) +endif TOPDIROPT = -B$(GHCLIB) ifeq "$(INSTALLING)" "1" @@ -53,4 +61,9 @@ all clean distclean maintainer-clean :: $(MAKE) INSTALLING=0 BIN_DIST=0 $(MFLAGS) $@ endif +ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32" +ghci.res : ghci.rc ghci.ico + windres -o ghci.res -i ghci.rc -O coff +endif + include $(TOP)/mk/target.mk