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 /config-portable.mk | |
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 'config-portable.mk')
-rw-r--r-- | config-portable.mk | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/config-portable.mk b/config-portable.mk new file mode 100644 index 0000000..4a92176 --- /dev/null +++ b/config-portable.mk @@ -0,0 +1,14 @@ +PREFIX = /usr +MANPREFIX = $(PREFIX)/share/man + +CC = cc -std=c11 + +CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 +CFLAGS = -Wall -O3 +LDFLAGS = -s + +# You can add -DALLOCA_LIMIT=# to CPPFLAGS, where # is a size_t +# value, to put a limit on how large allocation the library is +# allowed to make with alloca(3). For buffers that can have any +# size this limit will be used if it wants to allocate a larger +# buffer. Choose 0 to use malloc(3) instead of alloca(3). |