From: Daniel R. Grayson Date: Mon, 26 Oct 2015 02:14:20 +0000 (-0400) Subject: fix makefile for ghc 7.10 X-Git-Url: https://git.ak3n.com/?a=commitdiff_plain;h=31fc4b9864e1875f20baf05a8c85338c3274673c;p=cubicaltt.git fix makefile for ghc 7.10 --- diff --git a/GNUmakefile b/GNUmakefile index 68dd6b6..eb0da28 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -28,7 +28,7 @@ all: cubical # cubical: $(INPUT:.hs=.o) $(GRAMMAR_OBJECT_FILES); $(GHC) -o $@ $(GHCOPTIONS) $^ cubical: $(INPUT:.hs=.o) $(GRAMMAR_OBJECT_FILES) - $(GHC) -M $(INPUT) $(GRAMMAR_HS_FILES) + $(GHC) -M -dep-suffix "" $(INPUT) $(GRAMMAR_HS_FILES) $(GHC) --make $(GHCOPTIONS) -o cubical Main build-Makefile: $(INPUT) $(GRAMMAR_HS_FILES)