diff options
author | Mattias Andrée <m@maandree.se> | 2024-10-14 18:23:30 +0200 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2024-10-14 18:23:30 +0200 |
commit | e605868a9c9924e3d68ef0b04b247c297e58bb05 (patch) | |
tree | c32b7ef67ec150a74efb562ce442f90d5c2a191b /Makefile | |
parent | Fix whitespace (diff) | |
download | libsha1-e605868a9c9924e3d68ef0b04b247c297e58bb05.tar.gz libsha1-e605868a9c9924e3d68ef0b04b247c297e58bb05.tar.bz2 libsha1-e605868a9c9924e3d68ef0b04b247c297e58bb05.tar.xz |
Rename config.mk to config-x86.mk and add config-portable.mk
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -1,6 +1,15 @@ .POSIX: -CONFIGFILE = config.mk +CONFIGFILE = config-x86.mk +# config-x86.mk is the default because it is compatible +# with and optimal for most machines, and if it is not +# supported, the compilation will immediately fail. It +# enables optimisations on x86 CPU's that have the +# required features. +# +# config-portable.mk is available for exotic CPU's +# and compiler that do not support the features required +# for the optimisations. include $(CONFIGFILE) OS = linux |