]> git.lizzy.rs Git - dragonblocks_alpha.git/commitdiff
Replace gcc by cc in Makefile
authorElias Fleckenstein <eliasfleckenstein@web.de>
Sat, 20 Mar 2021 12:24:37 +0000 (13:24 +0100)
committerElias Fleckenstein <eliasfleckenstein@web.de>
Sat, 20 Mar 2021 12:24:37 +0000 (13:24 +0100)
Makefile

index 2a8a84306b3e580e26bfa2ca8ddf4fdf4650bf6c..ad9d1ab000a90d8f540f767a23d5dd81f52e4ff8 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -5,13 +5,13 @@ CLIENT = $(COMMON) client.o
 all: Dragonblocks DragonblocksServer
 
 Dragonblocks: $(CLIENT)
-       gcc -g -o Dragonblocks $(CLIENT)
+       cc -g -o Dragonblocks $(CLIENT)
 
 DragonblocksServer: $(SERVER)
-       gcc -g -o DragonblocksServer $(SERVER)
+       cc -g -o DragonblocksServer $(SERVER)
 
 %.o: %.c
-       gcc -c -g -o $@ -Wall -Wextra -Wpedantic -Werror $<
+       cc -c -g -o $@ -Wall -Wextra -Wpedantic -Werror $<
 
 clean:
        rm -rf *.o