summaryrefslogtreecommitdiff
path: root/test/Makefile
blob: ec61306f3902fad816c1d750de414644c2364e38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
MAKEFLAGS += -s
CFLAGS_ALLTESTS=-fsanitize=address -Wfatal-errors -Wall -Wextra -g
CFLAGS_SMODE=-fsanitize=address -Wfatal-errors -Wall -Werror -Wextra -g
CC=gcc

all: 7ed-TESTING
7ed-TESTING:
	cd .. && make tests
	echo "Done."

clean: 
	cd .. && make clean
	echo "Cleaned."

smode:
	echo "CC input.c ---> smode"
	cd .. && $(CC) $(CFLAGS_SMODE) input.c i_validation.c -o test/smode

alltests:
	cd .. && make tests
	echo "Done."