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