Version stamps - don't zero pad

This commit is contained in:
Joshua Bell 2019-09-29 12:15:37 -07:00
parent 9dc6a7a149
commit e65fdfe1b5
1 changed files with 3 additions and 3 deletions

View File

@ -14,9 +14,9 @@ TARGETS = \
$(OUTDIR)/set.date.BIN
# For timestamps
MM = $(shell date "+%m")
DD = $(shell date "+%d")
YY = $(shell date "+%y")
MM = $(shell date "+%-m")
DD = $(shell date "+%-d")
YY = $(shell date "+%-y")
DEFINES = -D DD=$(DD) -D MM=$(MM) -D YY=$(YY)
.PHONY: clean all