From fb473ed61d28c2de73bcb729168ad9427fc4c631 Mon Sep 17 00:00:00 2001 From: Pavel Vymetálek Date: Mon, 18 Feb 2019 14:42:14 +0100 Subject: Priprava pro prijem s pridanou cestou (path) --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ffe0501..9bcd37f 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,10 @@ PROJECT=sercp -all: +all: $(PROJECT) + +sercp: $(PROJECT).c gcc $(PROJECT).c -o $(PROJECT) -Wall -pedantic -MP -MD -std=gnu11 -Werror=format-security -O2 -debug: + +debug: $(PROJECT).c gcc $(PROJECT).c -o $(PROJECT) -Wall -pedantic -MP -MD -std=gnu11 -Werror=format-security -g -O0 clean: -- cgit