blob: b4ed98ef7e6a9235d27e9fe6707d13ac49522d4e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
.POSIX:
CC = cc
CFLAGS = -g -fsanitize=address,undefined
test: FORCE
$(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
|