mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-02 03:56:42 +00:00
parent
0da420c104
commit
362337a9e8
@ -9,9 +9,12 @@ ifneq ($(INSTALL_DIR),)
|
|||||||
ifneq ($(DEBUG_DIR),)
|
ifneq ($(DEBUG_DIR),)
|
||||||
$(TARGET): $(INSTALL_DIR)/$(BOOTSTRAP_OBJ)
|
$(TARGET): $(INSTALL_DIR)/$(BOOTSTRAP_OBJ)
|
||||||
|
|
||||||
$(INSTALL_DIR)/$(BOOTSTRAP_OBJ) : $(DEBUG_DIR)/$(BOOTSTRAP_OBJ)
|
$(BOOTSTRAP_OBJ).stripped: $(BOOTSTRAP_OBJ)
|
||||||
$(VERBOSE)$(STRIP) --strip-debug -o $@ $<
|
$(VERBOSE)$(STRIP) --strip-debug -o $@ $<
|
||||||
|
|
||||||
|
$(INSTALL_DIR)/$(BOOTSTRAP_OBJ) : $(BOOTSTRAP_OBJ).stripped
|
||||||
|
$(VERBOSE)ln -sf $(CURDIR)/$< $@
|
||||||
|
|
||||||
$(DEBUG_DIR)/$(BOOTSTRAP_OBJ) : $(BOOTSTRAP_OBJ)
|
$(DEBUG_DIR)/$(BOOTSTRAP_OBJ) : $(BOOTSTRAP_OBJ)
|
||||||
$(VERBOSE)ln -sf $(CURDIR)/$(BOOTSTRAP_OBJ) $(DEBUG_DIR)/$(BOOTSTRAP_OBJ)
|
$(VERBOSE)ln -sf $(CURDIR)/$(BOOTSTRAP_OBJ) $(DEBUG_DIR)/$(BOOTSTRAP_OBJ)
|
||||||
endif
|
endif
|
||||||
@ -22,4 +25,4 @@ $(BOOTSTRAP_OBJ):
|
|||||||
$(VERBOSE)$(LD) $(LD_MARCH) -u _start --whole-archive -r $(LINK_ITEMS) $(LIBCXX_GCC) -o $@
|
$(VERBOSE)$(LD) $(LD_MARCH) -u _start --whole-archive -r $(LINK_ITEMS) $(LIBCXX_GCC) -o $@
|
||||||
|
|
||||||
clean cleanall:
|
clean cleanall:
|
||||||
$(VERBOSE)rm -f $(BOOTSTRAP_OBJ)
|
$(VERBOSE)rm -f $(BOOTSTRAP_OBJ) $(BOOTSTRAP_OBJ).stripped
|
||||||
|
Loading…
Reference in New Issue
Block a user