Commit a6c455cf authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'ad477710'

* commit 'ad477710':
  build: Add shorthand for HOSTCC compile macro

Conflicts:
	Makefile
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents c490cd4c ad477710
......@@ -43,6 +43,7 @@ endef
COMPILE_C = $(call COMPILE,CC)
COMPILE_CXX = $(call COMPILE,CXX)
COMPILE_S = $(call COMPILE,AS)
COMPILE_HOSTC = $(call COMPILE,HOSTCC)
%.o: %.c
$(COMPILE_C)
......@@ -113,7 +114,7 @@ checkheaders: $(HOBJS)
alltools: $(TOOLS)
$(HOSTOBJS): %.o: %.c
$(call COMPILE,HOSTCC)
$(COMPILE_HOSTC)
$(HOSTPROGS): %$(HOSTEXESUF): %.o
$(HOSTLD) $(HOSTLDFLAGS) $(HOSTLD_O) $^ $(HOSTLIBS)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment