How exactly would I #define __AMIGADATE__ for GCC to be used in the version string, i.e. the date format should be (dd.mm.yyyy)? Thanks.
If you're using a makefile you could do it like this (not tested):
# Amiga date commandDATESTR := $(shell date lformat "%-d.%-m.%Y")# Unix date command# DATESTR := $(shell date +"%-d.%-m.%Y")...CFLAGS = -D__AMIGADATE__=$(DATESTR)
If you're using a makefile you could do it like this (not tested):