This var was originally $(CFLAGS_$*.o), and probably was copied from the generic %.o:%.c rules.
Nothing sets CFLAGS_libxl.o, so remove it. Signed-off-by: Anthony PERARD <anthony.per...@citrix.com> --- tools/libs/light/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libs/light/Makefile b/tools/libs/light/Makefile index 194bc5f268..975413ade8 100644 --- a/tools/libs/light/Makefile +++ b/tools/libs/light/Makefile @@ -200,7 +200,7 @@ libxl.api-ok: check-libxl-api-rules _libxl.api-for-check touch $@ _libxl.api-for-check: $(XEN_INCLUDE)/libxl.h $(AUTOINCS) - $(CC) $(CPPFLAGS) $(CFLAGS) $(CFLAGS_libxl.o) -c -E $< $(APPEND_CFLAGS) \ + $(CC) $(CPPFLAGS) $(CFLAGS) -c -E $< $(APPEND_CFLAGS) \ -DLIBXL_EXTERNAL_CALLERS_ONLY=LIBXL_EXTERNAL_CALLERS_ONLY \ >$@.new mv -f $@.new $@ -- Anthony PERARD