X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/balance?a=blobdiff_plain;f=Makefile;h=39414e54eb96293a5e945cebffee36da9fafd4e3;hb=539f4419afa0966d67b341dc6b30a6174bd3f844;hp=6a6fe5b7a9fdd537a74a5c49d9904a87bb187768;hpb=39ab34a368fbe30dc6639e021da89b1a20243fd6;p=plomrogue diff --git a/Makefile b/Makefile index 6a6fe5b..39414e5 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CC=gcc -CFLAGS=-Wall -Wextra -Werror -g +CFLAGS=-Wall -Wextra -Werror -Wformat-security -g TARGET_SERVER=roguelike-server TARGET_CLIENT=roguelike-client SRCDIR=src @@ -33,7 +33,7 @@ $(BUILDDIR)/%.o : $(SRCDIR)/%.c mkdir -p $(@D) $(CC) $(CFLAGS) -c $< -o $@ -# "make clean" to tries to delete all files that could possibly have been built. +# "make clean" to try to delete all files that could possibly have been built. # Declare target "phony", i.e. this is not about building a file. .PHONY : clean clean :