Skip to content
Snippets Groups Projects
Commit 6086e2b7 authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1998-03-11 13:56:18 by simonm]

added .hc-->.s and .S-->.o rules.
parent 996573cd
No related branches found
No related tags found
No related merge requests found
......@@ -64,6 +64,11 @@ SRC_HC_PRE_OPTS += $(HC_PRE__)
$(HC) $(HC_OPTS) -c $< -o $@ -osuf $(subst .,,$(suffix $@))
$(HC_POST_OPTS)
%.$(way_)s : %.$(way_)hc
$(HC_PRE_OPTS)
$(HC) $(HC_OPTS) -S $< -o $@ -osuf $(subst .,,$(suffix $@))
$(HC_POST_OPTS)
%.$(way_)hc : %.lhc
@$(RM) $@
$(UNLIT) $< $@
......@@ -125,6 +130,10 @@ SRC_HC_PRE_OPTS += $(HC_PRE__)
@$(RM) $@
$(CC) $(CC_OPTS) -c $< -o $@
%.$(way_)o : %.S
@$(RM) $@
$(CC) $(CC_OPTS) -c $< -o $@
#%.$(way_)s : %.c
# @$(RM) $@
# $(CC) $(CC_OPTS) -S $< -o $@
......
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