summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 5d5f623d278af398b9b3338abd0fe6898242c70e (plain) (blame)
1
2
3
4
5
6
7
8
9
default:
	gcc -Wall -pedantic -g -Ilib -Isrc -I. -pthread src/main.c -lcurl -lncursesw -lformw -lm -odiscord.c
prepare:
	wget https://raw.githubusercontent.com/DaveGamble/cJSON/master/cJSON.c -O lib/cJSON.c
	wget https://raw.githubusercontent.com/DaveGamble/cJSON/master/cJSON.h -O lib/cJSON.h
clean:
	rm lib/cJSON.c lib/cJSON.h
valgrind:
	valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes --verbose --log-file=valgrind-out.txt --suppressions=/usr/lib/valgrind/ncurses.supp --suppressions=misc/openssl.supp ./discord.c