Browse Source

build: Allow specifying extra object files when linking HOSTPROGS

tags/n2.2-rc1
Diego Biurrun 11 years ago
parent
commit
e8fcdebb17
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      common.mak

+ 1
- 1
common.mak View File

@@ -42,7 +42,7 @@ $(HOSTOBJS): %.o: %.c
$(call COMPILE,HOSTCC)

$(HOSTPROGS): %$(HOSTEXESUF): %.o
$(HOSTLD) $(HOSTLDFLAGS) $(HOSTLD_O) $< $(HOSTLIBS)
$(HOSTLD) $(HOSTLDFLAGS) $(HOSTLD_O) $^ $(HOSTLIBS)

$(OBJS): | $(sort $(dir $(OBJS)))
$(HOBJS): | $(sort $(dir $(HOBJS)))


Loading…
Cancel
Save