search for: nasmhdr

Displaying 1 result from an estimated 1 matches for "nasmhdr".

Did you mean: nasher
2014 Dec 17
0
[PATCH] build: sort sources to build in a more deterministic way
...re/Makefile b/core/Makefile index ad0acb5..bb754b8 100644 --- a/core/Makefile +++ b/core/Makefile @@ -39,11 +39,11 @@ BTARGET = kwdhash.gen \ isolinux.bin isolinux-debug.bin pxelinux.0 lpxelinux.0 # All primary source files for the main syslinux files -NASMSRC := $(wildcard $(SRC)/*.asm) -NASMHDR := $(wildcard $(SRC)/*.inc) -CSRC := $(shell find $(SRC) -name '*.c' -print) -SSRC := $(shell find $(SRC) -name '*.S' -print) -CHDR := $(shell find $(SRC) -name '*.h' -print) +NASMSRC := $(sort $(wildcard $(SRC)/*.asm)) +NASMHDR := $(sort $(wildcard $(SRC)/*.inc)) +CSR...