Skip to content
Snippets Groups Projects
Commit e8b1d6ba authored by Ian Lynagh's avatar Ian Lynagh
Browse files

Fix some whitespace in Makefile.in

parent 54505d11
No related merge requests found
......@@ -38,7 +38,7 @@ RM = rm -f
# Rules follow:
MKSTUBOBJS = find $(odir) -name "*_stub.$(osuf)" -print
# HACK ^^^ we tried to use $(wildcard), but apparently it fails due to
# HACK ^^^ we tried to use $(wildcard), but apparently it fails due to
# make using cached directory contents, or something.
all :: $(odir)/.depend $(LIB)
......@@ -59,7 +59,7 @@ else
ifneq "$(filter -split-objs, $(GHC_OPTS))" ""
$(LIB) : $(HS_OBJS) $(C_OBJS)
@$(RM) $@
(echo $(C_OBJS) `$(MKSTUBOBJS)`; find $(patsubst %.$(osuf),%_split,$(HS_OBJS)) -name '*.$(way_)o' -print) | xargs $(AR) q $(EXTRA_AR_ARGS) $@
(echo $(C_OBJS) `$(MKSTUBOBJS)`; find $(patsubst %.$(osuf),%_split,$(HS_OBJS)) -name '*.$(way_)o' -print) | xargs $(AR) q $(EXTRA_AR_ARGS) $@
else
$(LIB) : $(HS_OBJS) $(C_OBJS)
@$(RM) $@
......@@ -95,7 +95,7 @@ $(odir_)%.$(osuf) : $(odir_)%.lhs
$(odir_)%.$(osuf) : $(srcdir)/%.hs
$(GHC) $(GHC_OPTS) -c $< -o $@ -ohi $(basename $@).$(hisuf)
$(odir_)%.$(osuf) : $(srcdir)/%.lhs
$(odir_)%.$(osuf) : $(srcdir)/%.lhs
$(GHC) $(GHC_OPTS) -c $< -o $@ -ohi $(basename $@).$(hisuf)
$(odir_)%.$(osuf) : $(srcdir)/%.c
......
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