chg: easy printing of MAKE variables

Usage::
  make print-FLASHTOOL
  cd bootrom; make print-APP_CFLAGS
  cd client; make print-GCC_VERSION
This commit is contained in:
iceman1001
2017-09-18 18:59:51 +02:00
parent 3839ce006d
commit 28f1f23d48
4 changed files with 10 additions and 3 deletions

View File

@@ -269,7 +269,9 @@ lua_build:
cd ../liblua && make $(LUAPLATFORM)
.PHONY: all clean
print-%: ; @echo $* = $($*)
# easy printing of MAKE VARIABLES
print-%: ; @echo $* = $($*)
$(OBJDIR)/%_NOSIMD.o : %.c $(OBJDIR)/%.d
$(CC) $(DEPFLAGS) $(CFLAGS) $(HARD_SWITCH_NOSIMD) -c -o $@ $<