Skip to content

Commit 6af4515

Browse files
committed
py: Use "GEN" consistently for describing files generated in the build.
1 parent 65ef59a commit 6af4515

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

py/makeversionhdr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def make_version_header(filename):
9999

100100
# Only write the file if we need to
101101
if write_file:
102-
print("Generating %s" % filename)
102+
print("GEN %s" % filename)
103103
with open(filename, 'w') as f:
104104
f.write(file_data)
105105

py/mkrules.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ $(HEADER_BUILD):
9797

9898
ifneq ($(FROZEN_DIR),)
9999
$(BUILD)/frozen.c: $(wildcard $(FROZEN_DIR)/*) $(HEADER_BUILD) $(FROZEN_EXTRA_DEPS)
100-
$(ECHO) "Generating $@"
100+
$(ECHO) "GEN $@"
101101
$(Q)$(MAKE_FROZEN) $(FROZEN_DIR) > $@
102102
endif
103103

@@ -118,7 +118,7 @@ $(BUILD)/frozen_mpy/%.mpy: $(FROZEN_MPY_DIR)/%.py $(TOP)/mpy-cross/mpy-cross
118118

119119
# to build frozen_mpy.c from all .mpy files
120120
$(BUILD)/frozen_mpy.c: $(FROZEN_MPY_MPY_FILES) $(BUILD)/genhdr/qstrdefs.generated.h
121-
@$(ECHO) "Creating $@"
121+
@$(ECHO) "GEN $@"
122122
$(Q)$(MPY_TOOL) -f -q $(BUILD)/genhdr/qstrdefs.preprocessed.h $(FROZEN_MPY_MPY_FILES) > $@
123123
endif
124124

0 commit comments

Comments
 (0)