blob: 660a20fa51f037c50fa430b0c61430f02ff9cbd1 (
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 $(CFLAGS) -o test
./test
FORCE: ; # PHONY is a non standard extension
|