diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-07-07 15:32:21 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-07-07 15:32:21 -0700 |
commit | 852d962ee2d0a51bf7aa3c6f0b1fdecbef1a3efd (patch) | |
tree | 1fd82e3dcc96b5049ae7f47ca2ed3df0ac3d93a7 /memdisk/Makefile | |
parent | 07ff8e874b0bd1d1c4fa893c94063fbedf6e3315 (diff) | |
download | syslinux-852d962ee2d0a51bf7aa3c6f0b1fdecbef1a3efd.tar.gz |
Share the gen-id stuff between core and memdisk
Both core and memdisk wants to use the gen-id stuff, so let it.
Diffstat (limited to 'memdisk/Makefile')
-rw-r--r-- | memdisk/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/memdisk/Makefile b/memdisk/Makefile index 005ab1d4..073d32cd 100644 --- a/memdisk/Makefile +++ b/memdisk/Makefile @@ -38,6 +38,18 @@ NINCLUDE = OBJCOPY = objcopy PERL = perl +SRCS = $(wildcard *.asm *.c *.h) + +# The DATE is set on the make command line when building binaries for +# official release. Otherwise, substitute a hex string that is pretty much +# guaranteed to be unique to be unique from build to build. +ifndef HEXDATE +HEXDATE := $(shell $(PERL) ../now.pl $(SRCS)) +endif +ifndef DATE +DATE := $(shell sh ../gen-id.sh $(HEXDATE)) +endif + # Important: init.o16 must be first!! OBJS16 = init.o16 init32.o OBJS32 = start32.o setup.o msetup.o e820func.o conio.o memcpy.o memset.o \ |