[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH v10 21/24] xsplice: Stacking build-id dependency checking.
>>> On 27.04.16 at 21:27, <konrad.wilk@xxxxxxxxxx> wrote: > --- a/xen/arch/x86/test/Makefile > +++ b/xen/arch/x86/test/Makefile > @@ -6,17 +6,20 @@ CODE_SZ=$(shell nm --defined -S $(1) | grep $(2) | awk '{ > print "0x"$$2}') > .PHONY: default > > XSPLICE := xen_hello_world.xsplice > +XSPLICE_BYE := xen_bye_world.xsplice > > default: xsplice > > install: xsplice > $(INSTALL_DATA) $(XSPLICE) $(DESTDIR)$(DEBUG_DIR)/$(XSPLICE) > + $(INSTALL_DATA) $(XSPLICE_BYE) $(DESTDIR)$(DEBUG_DIR)/$(XSPLICE_BYE) > uninstall: > rm -f $(DESTDIR)$(DEBUG_DIR)/$(XSPLICE) > + rm -f $(DESTDIR)$(DEBUG_DIR)/$(XSPLICE_BYE) > > .PHONY: clean > clean:: > - rm -f *.o .*.o.d $(XSPLICE) config.h > + rm -f *.o .*.o.d $(XSPLICE) $(XSPLICE_BYE) config.h *.bin While you can't do this in the uninstall target above, here using *.xsplice would seem to be better (and then maybe do this right away in the patch introducing the rule). > +$(XSPLICE_BYE): $(XSPLICE) config.h xen_bye_world_func.o xen_bye_world.o > hello_world_note.o > + $(LD) $(LDFLAGS) $(build_id_linker) -r -o $(XSPLICE_BYE) \ > + $(filter %.o,$^) Same here regarding config.h and $(filter ...), i.e. with that adjusted Acked-by: Jan Beulich <jbeulich@xxxxxxxx> Jan _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |