diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -2,6 +2,8 @@ PARTS=loading1.xex config/config.xex loading2.xex memsetup.xex font_dl.xex clien TESTXEX=fnchat-$(shell date +%Y%m%d-%H%M).xex +VERSION:=$(shell git describe --long 2>/dev/null || echo NOGIT )+$(shell date +%Y%m%d-%H%M )@$(shell hostname -s 2>/dev/null || echo UNKNOWN ) + # remove the -a if using older versions of atasm ATASM=atasm -s -a @@ -14,10 +16,10 @@ fnchat.xex: $(PARTS) client.xex: client client: - $(MAKE) -f Makefile.client + $(MAKE) -f Makefile.client VERSION=$(VERSION) config/config.xex: - $(MAKE) -C config + $(MAKE) -C config VERSION=$(VERSION) clean: rm -f $(PARTS) *.o src/*.o obj/atari/*.o config/*.o fnchat.xex |
