The default output format is different and the grep don't find anything.
To be fixed later.
$(PROG): $(OBJ) @V_PCAPDEP@ $(LIBNETDISSECT)
@rm -f $@
$(CC) $(FULL_CFLAGS) $(LDFLAGS) -o $@ $(OBJ) $(LIBNETDISSECT) $(LIBS)
- nm $(PROG) | grep ' [tT] ' > $(PROG)_instrument_functions.nm
+ nm $(PROG) | grep ' [tT] ' > $(PROG)_instrument_functions.nm || :
instrument_all: $(PROG)
- nm $(PROG) | grep ' [tT] ' > $(PROG)_instrument_functions.nm
+ nm $(PROG) | grep ' [tT] ' > $(PROG)_instrument_functions.nm || :
instrument_global: $(PROG)
- nm $(PROG) | grep ' [T] ' > $(PROG)_instrument_functions.nm
+ nm $(PROG) | grep ' [T] ' > $(PROG)_instrument_functions.nm || :
$(LIBNETDISSECT): $(LIBNETDISSECT_OBJ)
@rm -f $@