X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Fdriver%2Fghci%2FMakefile;h=9392249f03d78aa3fb25fa51148ef8d344ca84b2;hb=28a464a75e14cece5db40f2765a29348273ff2d2;hp=09d3e33c1e6d403caf63d627541b5794fa17264d;hpb=9994d4b8cb78fd2d15f3436aaa6b3a6c553e6bc1;p=ghc-hetmet.git diff --git a/ghc/driver/ghci/Makefile b/ghc/driver/ghci/Makefile index 09d3e33..9392249 100644 --- a/ghc/driver/ghci/Makefile +++ b/ghc/driver/ghci/Makefile @@ -1,5 +1,5 @@ #----------------------------------------------------------------------------- -# $Id: Makefile,v 1.4 2001/06/23 12:54:18 panne Exp $ +# $Id: Makefile,v 1.11 2005/05/05 00:58:38 sof Exp $ # TOP=../.. @@ -27,15 +27,29 @@ endif INSTALLED_SCRIPT_PROG = ghci-$(ProjectVersion) 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" SCRIPT_PROG = $(INSTALLED_SCRIPT_PROG) +ifneq "$(TARGETPLATFORM)" "i386-unknown-mingw32" LINK = ghci +endif else SCRIPT_PROG = $(INPLACE_SCRIPT_PROG) endif @@ -47,5 +61,9 @@ all clean distclean maintainer-clean :: $(MAKE) INSTALLING=0 BIN_DIST=0 $(MFLAGS) $@ endif -include $(TOP)/mk/target.mk +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