aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
authoraxtloss <axtlos@getcryst.al>2024-07-11 02:56:56 +0200
committeraxtloss <axtlos@getcryst.al>2024-07-11 02:56:56 +0200
commit3e85fcb0270c9224ab95dac02c737e6676974c8e (patch)
tree2ec96323ef26f9ec1fee8ac6a0b718700e909eda /tests/Makefile
parente8f6d6c71b45062cc7ec4dcadcecba44af39a15d (diff)
downloadextlib-3e85fcb0270c9224ab95dac02c737e6676974c8e.tar.gz
extlib-3e85fcb0270c9224ab95dac02c737e6676974c8e.tar.bz2
Implement memset_s and improve free_secure
Diffstat (limited to '')
-rw-r--r--tests/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 660a20f..b4ed98e 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -4,7 +4,7 @@ CC = cc
CFLAGS = -g -fsanitize=address,undefined
test: FORCE
- $(CC) test.c ../src/extlib.c ../src/extstring.c $(CFLAGS) -o test
+ $(CC) test.c ../src/extlib.c ../src/extstring.c ../src/constraint_handler.c ../src/memset_s.c $(CFLAGS) -o test
./test
FORCE: ; # PHONY is a non standard extension