From: Loup Vaillant Date: Tue, 4 Jul 2017 21:40:41 +0000 (+0200) Subject: documented C/C++ compatibility in the makefile X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=162983ea17d467ee273027c56abc870aac950809;p=Monocypher.git documented C/C++ compatibility in the makefile --- diff --git a/makefile b/makefile index 103c00a..6d377d0 100644 --- a/makefile +++ b/makefile @@ -1,4 +1,15 @@ -CC=gcc -std=c11 +# compile with any of the following +CC=gcc -std=c99 +#CC=gcc -std=c11 +#CC=g++ -std=c++98 +#CC=g++ -std=c++11 +#CC=g++ -std=c++14 +#CC=g++ -std=c++17 +#CC=clang -std=c99 +#CC=clang -std=c11 +#CC=clang++ -std=c++98 +#CC=clang++ -std=c++11 +#CC=clang++ -std=c++14 CFLAGS= -I src -pedantic -Wall -Wextra -O2 .PHONY: all clean directories