mirror of https://github.com/ipxe/ipxe.git
Added "make symcheck"
parent
4e5f10790b
commit
2da3b7a38f
|
@ -398,6 +398,15 @@ TAGS.$(ARCH) :
|
||||||
ctags -e -R -f $@ $(foreach ARCH,$(OTHER_ARCHS),--exclude=arch/$(ARCH))
|
ctags -e -R -f $@ $(foreach ARCH,$(OTHER_ARCHS),--exclude=arch/$(ARCH))
|
||||||
CLEANUP += TAGS*
|
CLEANUP += TAGS*
|
||||||
|
|
||||||
|
# Symbol table checks
|
||||||
|
#
|
||||||
|
SYMTAB = $(BIN)/symtab
|
||||||
|
$(SYMTAB) : $(BLIB)
|
||||||
|
$(NM) -o -g $< > $@
|
||||||
|
|
||||||
|
symcheck : $(SYMTAB)
|
||||||
|
$(SYMCHECK) $<
|
||||||
|
|
||||||
# Force rebuild for any given target
|
# Force rebuild for any given target
|
||||||
#
|
#
|
||||||
$(BIN)/%.rebuild :
|
$(BIN)/%.rebuild :
|
||||||
|
|
Loading…
Reference in New Issue