summaryrefslogtreecommitdiff
path: root/Makefile
blob: 216c2f718688bf2d7db268f45401627187db27b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
all: 7ed
7ed:
	gcc -Wfatal-errors -Wall -Werror -Wextra -g -O2 7ed.c functions.c startmode.c editmode.c -o 7ed
	
clean:
	rm -f 7ed
	rm -f test/7ed-TESTING

tests:
	gcc -Wfatal-errors -Wall -Werror -Wextra -g -fsanitize=address 7ed.c functions.c startmode.c editmode.c -o test/7ed-TESTING