de3b34adf5b7d65712cda5e6f9ba3eada746d415
[ghc-hetmet.git] / ghc / interpreter / Makefile
1
2 # --------------------------------------------------------------------------- #
3 # $Id: Makefile,v 1.26 2000/02/24 13:58:56 sewardj Exp $                      #
4 # --------------------------------------------------------------------------- #
5
6 TOP = ..
7 include $(TOP)/mk/boilerplate.mk
8 SUBDIRS = lib
9
10 # --------------------------------------------------------------------- #
11 # interpreter and relevant .a/.so files                                 #
12 # --------------------------------------------------------------------- #
13
14 ifeq "$(TARGETPLATFORM)" "i386-unknown-cygwin32"
15 DYN_EXT=.dll
16 LIB_DL=
17 else
18 DYN_EXT=.so
19 LIB_DL=-ldl
20 endif
21
22 ifeq "$(HaveLibReadline)$" "YES"
23 LIB_READLINE=-lreadline -ltermcap
24 else
25 LIB_READLINE=
26 endif
27
28 YACC = bison -y
29 %.c: %.y
30         -$(YACC) $<
31         mv y.tab.c $@
32         rm -f input.o
33
34 HS_SRCS =
35
36 Y_SRCS = parser.y
37 C_SRCS = link.c type.c static.c storage.c derive.c input.c compiler.c subst.c \
38      translate.c codegen.c lift.c free.c stgSubst.c output.c   \
39      hugs.c dynamic.c stg.c sainteger.c object.c interface.c
40
41 SRC_CC_OPTS = -g -O -I$(GHC_INTERPRETER_DIR) -I$(GHC_INCLUDE_DIR) -I$(GHC_RUNTIME_DIR) -D__HUGS__ -DCOMPILING_RTS -Wall -Wstrict-prototypes -Wno-unused -DDEBUG -Winline
42
43 GHC_LIBS_NEEDED = $(GHC_RUNTIME_DIR)/libHSrts.a
44
45 all :: parser.c $(GHC_LIBS_NEEDED) nHandle$(DYN_EXT) hugs
46
47 ### EXTREMELY hacky
48 hugs: $(C_OBJS) ../rts/Sanity.o ../rts/Assembler.o ../rts/Disassembler.o \
49       ../rts/Evaluator.o ../rts/ForeignCall.o ../rts/GC.o ../rts/Printer.o \
50       ../rts/StgCRun.o ../rts/PrimOps.o
51         $(CC) -o $@ $(CC_OPTS) $^ $(GHC_LIBS_NEEDED) \
52                  -lbfd -liberty $(LIB_READLINE) $(LIB_DL) \
53                  ../rts/gmp/libgmp.a -lm
54
55 foobar:
56         rm -f ../rts/libHSrts.a  ../rts/libHSrts_u.a
57         rm -f ../rts/StgCRun.o ../rts/StgCRun.u_o
58         make all
59
60 nHandle$(DYN_EXT): nHandle.c
61 ifeq "$(TARGETPLATFORM)" "i386-unknown-cygwin32"
62         gcc -mno-cygwin -O -Wall -o nHandle.o -c nHandle.c
63         dllwrap -mno-cygwin --target=i386-mingw32 -o nHandle.dll \
64                 -def nHandle.def nHandle.o
65 else
66         gcc -O -Wall -shared -fPIC -o nHandle.so nHandle.c
67 endif
68
69 $(GHC_RUNTIME_DIR)/libHSrts.a:
70         (cd $(GHC_RUNTIME_DIR) ; make clean ; make EXTRA_CC_OPTS=-I$(GHC_INTERPRETER_DIR))
71
72 cleanish:
73         /bin/rm *.o
74 rtsclean:
75         (cd $(GHC_RUNTIME_DIR) ; make clean)
76
77 binaries:
78         tar cvzf stghugs.tar.gz hugs$(exeext) nHandle$(DYN_EXT) lib/*lhs lib/Prelude.hs
79
80 snapshot:
81         /bin/rm -f snapshot.tar
82         tar cvf snapshot.tar Makefile *.[chy] \
83              ../rts/Assembler.c ../rts/Evaluator.c ../rts/Disassembler.c \
84              ../rts/ForeignCall.c ../rts/Printer.c ../rts/QueueTemplate.h \
85              ../includes/options.h ../includes/Assembler.h nHandle.c \
86              ../includes/Assembler.h ../rts/Bytecodes.h ../includes/ClosureMacros.h \
87              lib/*.hs runnofib runallnofib
88
89
90 # --------------------------------------------------------------------- #
91 # Testing                                                               #
92 # --------------------------------------------------------------------- #
93
94 check :: all
95         ./test/runtests test/static/*.hs
96         ./test/runtests test/typechecker/*.hs
97         ./test/runtests test/runtime/*.hs
98         ./test/runtests test/std/*.hs
99         ./test/runtests test/exts/*.hs
100
101 checkrun: all
102         ./test/runtests test/runtime/*.hs
103         ./test/runtests test/std/*.hs
104         ./test/runtests test/exts/*.hs
105
106 # --------------------------------------------------------------------- #
107 # Cleanery & misc                                                       #
108 # --------------------------------------------------------------------- #
109
110 CLEAN_FILES += hugs nHandle.dll
111 CLEAN_FILES += $(TOP)/ghc/rts/libHSrts.a $(TOP)/ghc/rts/*.o
112 CLEAN_FILES += parser.c
113
114 INSTALL_LIBEXECS = hugs
115
116 depend :: $(LOOPS) $(SRCS_UGNHS)
117
118
119 include $(TOP)/mk/target.mk
120
121