1
0
Fork 0
mirror of https://github.com/kastdeur/pipeband-music.git synced 2025-04-03 20:24:57 +02:00

Makefile: add gitmtime to a file's git commit time

This commit is contained in:
Eric Teunis de Boone 2025-03-13 23:12:00 +01:00
parent 321a31e879
commit 0480958ea1

View file

@ -58,3 +58,13 @@ SUBDIRS := $(sort $(SUBDIRS))
.PHONY: $(SUBDIRS)
$(SUBDIRS) : % :
@$(MAKE) $(filter $(@D)/%.pdf,$(PDFOBJS))
# Special target for setting modification times back to commit time
.PHONY: gitmtime
gitmtime:
@# From https://stackoverflow.com/a/30143117
for FILE in $$(git ls-files); do \
TIME=$$(git log --pretty=format:%cd -n 1 --date=iso $$FILE); \
TIME2=$$(echo $$TIME | sed 's/-//g;s/ //;s/://;s/:/\./;s/ .*//'); \
touch -m -t $$TIME2 $$FILE; \
done