Add info target

This commit is contained in:
Jan Eitzinger
2021-01-18 07:53:38 +01:00
parent 89b2ecdb75
commit 86e57fd554
4 changed files with 10 additions and 2 deletions

View File

@@ -53,6 +53,10 @@ ${TARGET}: $(BUILD_DIR) $(OBJ)
asm: $(BUILD_DIR) $(ASM)
info:
@echo $(CFLAGS)
$(Q)$(CC) $(VERSION)
$(BUILD_DIR)/%.o: %.c
@echo "===> COMPILE $@"
$(CC) -c $(CPPFLAGS) $(CFLAGS) $< -o $@