2 @echo "This makefile builds Data.s, which contains constant data for the"
3 @echo "AES implementation. This file does not normally need to be rebuilt,"
4 @echo "so it is checked into the source code repository. It should be"
5 @echo "changed only when the implementation changes and needs data in a"
6 @echo "different format. (This file can also build a C version, Data.c,"
7 @echo "but that is not currently in use.)"
9 @echo "To rebuild the file(s), execute \"make -f Data.mk all\"."
15 CFLAGS += -O3 -std=c99 -Wmost -Werror
17 .INTERMEDIATE: MakeData
20 # Do not leave bad output files if the build fails.
21 .DELETE_ON_ERROR: $(Targets)