Skip to content
Snippets Groups Projects
Commit ec8a3091 authored by sof's avatar sof
Browse files

[project @ 1997-06-10 18:40:34 by sof]

Added .hs -> .hc rule
parent b7d6988b
No related merge requests found
......@@ -51,6 +51,10 @@ HASKELL_POST_COMPILE=$(patsubst %,$(HASKELL_SPLIT_POST),$(filter -split-objs,$(H
$(RM) $@
$(HC) $(HC_OPTS) -C $< -o $@
%.$(way_)hc : %.hs
$(RM) $@
$(HC) $(HC_OPTS) -C $< -o $@
%.$(way_)o : %.$(way_)hc
$(HASKELL_PRE_COMPILE)
$(HC) $(HC_OPTS) -c $< -o $@ -osuf $(subst .,,$(suffix $@))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment