From: Bernhard Urban Date: Thu, 2 Aug 2012 20:01:50 +0000 (+0200) Subject: Makefile: add boot class dependency for debug build X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=mate.git;a=commitdiff_plain;h=97c1f6e3472ef0d98a9731101dbf57c75123f287 Makefile: add boot class dependency for debug build --- diff --git a/Makefile b/Makefile index b4be049..abd630f 100644 --- a/Makefile +++ b/Makefile @@ -74,7 +74,7 @@ DEBUGFLAGS = -DDBG_JIT -DDBG_MP else DEBUGFLAGS = ${DBGFLAGS} endif -mate.dbg: Mate.hs ffi/trap.c $(HS_FILES) $(HS_BOOT) ffi/native.o +mate.dbg: Mate.hs ffi/trap.c $(HS_FILES) $(HS_BOOT) ffi/native.o $(CLASS_FILES) @mkdir -p $(B_DEBUG)/{ffi,Mate,} gcc -Wall $(DEBUGFLAGS) -O0 -c ffi/trap.c -o $(B_DEBUG)/ffi/trap.o ghc --make $(DEBUGFLAGS) $(GHC_OPT) Mate.hs $(B_DEBUG)/ffi/trap.o -o $@ $(GHC_LD) -outputdir $(B_DEBUG)