[project @ 2000-03-31 04:13:27 by andy]
[ghc-hetmet.git] / ghc / interpreter / Makefile
index 60933d7..1881a5f 100644 (file)
@@ -1,52 +1,87 @@
 
-# ----------------------------------------------------------------------------- #
-# $Id: Makefile,v 1.10 1999/07/06 15:24:35 sewardj Exp $                         #
-# ----------------------------------------------------------------------------- #
+# --------------------------------------------------------------------------- #
+# $Id: Makefile,v 1.29 2000/03/31 04:13:27 andy Exp $                      #
+# --------------------------------------------------------------------------- #
 
-TOP = ../..
+TOP = ..
 include $(TOP)/mk/boilerplate.mk
-
-GHC_DIR = $(TOP)/ghc
-RTS_DIR = $(TOP)/ghc/rts
+SUBDIRS = lib
 
 # --------------------------------------------------------------------- #
 # interpreter and relevant .a/.so files                                 #
 # --------------------------------------------------------------------- #
 
+ifeq "$(TARGETPLATFORM)" "i386-unknown-cygwin32"
+DYN_EXT=.dll
+LIB_DL=
+else
+DYN_EXT=.so
+LIB_DL=-ldl
+endif
+
+ifeq "$(HaveLibReadline)$" "YES"
+LIB_READLINE=-lreadline -ltermcap
+else
+LIB_READLINE=
+endif
+
+ifeq "$(HaveLibGmp)$" "YES"
+LIB_GMP=-lgmp
+else
+LIB_GMP=../rts/gmp/libgmp.a
+endif
+
 YACC = bison -y
 %.c: %.y
        -$(YACC) $<
        mv y.tab.c $@
        rm -f input.o
 
-
 HS_SRCS =
 
 Y_SRCS = parser.y
 C_SRCS = link.c type.c static.c storage.c derive.c input.c compiler.c subst.c \
-     translate.c codegen.c lift.c free.c stgSubst.c optimise.c output.c   \
-     hugs.c dynamic.c stg.c sainteger.c interface.c
+     translate.c codegen.c lift.c free.c stgSubst.c output.c   \
+     hugs.c dynamic.c stg.c sainteger.c object.c interface.c
 
-SRC_CC_OPTS = -g -I$(GHC_DIR)/interpreter -I$(GHC_DIR)/includes -I$(GHC_DIR)/rts -D__HUGS__ -DCOMPILING_RTS -Wall -Wstrict-prototypes -DDEBUG -DDEBUG_EXTRA
+SRC_CC_OPTS = -g  -I$(GHC_INTERPRETER_DIR) -I$(GHC_INCLUDE_DIR) -I$(GHC_RUNTIME_DIR) -D__HUGS__ -DCOMPILING_RTS -Wall -Wstrict-prototypes -Wno-unused -DDEBUG -Winline
 
-GHC_LIBS_NEEDED = $(TOP)/ghc/rts/libHSrts.a
+GHC_LIBS_NEEDED = $(GHC_RUNTIME_DIR)/libHSrts.a
 
-all :: parser.c $(GHC_LIBS_NEEDED) nHandle.so hugs
+all :: parser.c $(GHC_LIBS_NEEDED) nHandle$(DYN_EXT) hugs
 
 ### EXTREMELY hacky
-hugs: $(C_OBJS) ../rts/Sanity.o ../rts/Assembler.o ../rts/Disassembler.o \
+hugs: $(C_OBJS) ../rts/Sanity.o ../rts/Assembler.o ../rts/Disassembler.o   \
       ../rts/Evaluator.o ../rts/ForeignCall.o ../rts/GC.o ../rts/Printer.o \
-      ../rts/StgCRun.o nHandle.so
-       $(CC) -o $@ -rdynamic $(CC_OPTS) $^ $(GHC_LIBS_NEEDED) -lbfd -liberty -ldl -lm
-
-nHandle.so:
-       gcc -O -fPIC -shared -o nHandle.so nHandle.c
-
-$(TOP)/ghc/rts/libHSrts.a:
-       (cd $(TOP)/ghc/rts ; make clean ; make EXTRA_CC_OPTS=-I$(GHC_DIR)/interpreter)
+      ../rts/StgCRun.o ../rts/PrimOps.o ../rts/libHSrts.a
+       $(CC) -o $@ $(CC_OPTS) $^ $(GHC_LIBS_NEEDED) \
+                -lbfd -liberty $(LIB_READLINE) $(LIB_DL) \
+                $(LIB_GMP) -lm
+
+foobar:
+       rm -f ../rts/libHSrts.a  ../rts/libHSrts_u.a
+       rm -f ../rts/StgCRun.o ../rts/StgCRun.u_o
+       make all
+
+nHandle$(DYN_EXT): nHandle.c
+ifeq "$(TARGETPLATFORM)" "i386-unknown-cygwin32"
+       gcc -mno-cygwin -O -Wall -o nHandle.o -c nHandle.c
+       dllwrap -mno-cygwin --target=i386-mingw32 -o nHandle.dll \
+                -def nHandle.def nHandle.o
+else
+       gcc -O -Wall -shared -fPIC -o nHandle.so nHandle.c
+endif
+
+$(GHC_RUNTIME_DIR)/libHSrts.a:
+       (cd $(GHC_RUNTIME_DIR) ; make clean ; make EXTRA_CC_OPTS=-I$(GHC_INTERPRETER_DIR))
 
 cleanish:
        /bin/rm *.o
+rtsclean:
+       (cd $(GHC_RUNTIME_DIR) ; make clean)
+
+binaries:
+       tar cvzf stghugs.tar.gz hugs$(exeext) nHandle$(DYN_EXT) lib/*lhs lib/Prelude.hs
 
 snapshot:
        /bin/rm -f snapshot.tar
@@ -78,7 +113,7 @@ checkrun: all
 # Cleanery & misc                                                       #
 # --------------------------------------------------------------------- #
 
-CLEAN_FILES += hugs nHandle.so
+CLEAN_FILES += hugs nHandle.dll
 CLEAN_FILES += $(TOP)/ghc/rts/libHSrts.a $(TOP)/ghc/rts/*.o
 CLEAN_FILES += parser.c