Changeset View
Changeset View
Standalone View
Standalone View
stand/libsa/Makefile
| Show First 20 Lines • Show All 186 Lines • ▼ Show 20 Lines | |||||
| # Crypto hashing functions | # Crypto hashing functions | ||||
| # sha256 and sha512 from sys/crypto | # sha256 and sha512 from sys/crypto | ||||
| .PATH: ${SYSDIR}/crypto/sha2 | .PATH: ${SYSDIR}/crypto/sha2 | ||||
| SRCS+= sha256c.c sha512c.c | SRCS+= sha256c.c sha512c.c | ||||
| # md5 from the kernel | # md5 from the kernel | ||||
| .PATH: ${SYSDIR}/crypto | .PATH: ${SYSDIR}/crypto | ||||
| SRCS+= md5c.c | SRCS+= md5c.c | ||||
| CFLAGS.md5c.c+= -DSTANDALONE_SMALL | |||||
| .if ${DO32:U0} == 0 | .if ${DO32:U0} == 0 | ||||
| MAN=libsa.3 | MAN=libsa.3 | ||||
| .endif | .endif | ||||
| # Create a subset of includes that are safe, as well as adjusting those that aren't | # Create a subset of includes that are safe, as well as adjusting those that aren't | ||||
| # The lists may drive people nuts, but they are explicitly opt-in | # The lists may drive people nuts, but they are explicitly opt-in | ||||
| FAKE_DIRS=xlocale arpa ssp | FAKE_DIRS=xlocale arpa ssp | ||||
| Show All 25 Lines | |||||