9511_project01

project 1 for algorithms & programming I (9511) prof. Cardozo
Index Commits Files Refs README
commit 34caea27ae13d5a393f385aa32d37b616f4c3b1a
parent 7aa291258aed8a90c7e602b2ddbc76bb5dbcf5d4
Author: klewer-martin <martin.cachari@gmail.com>
Date:   Wed, 10 Feb 2021 19:09:36 -0300

Update make.bat, the windows script compiler, now the final application is called
'analisis_covid' also when the compile process finishes the .o files are deleted
automatically;

Diffstat:
Mmake.bat | 6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/make.bat b/make.bat
@@ -1,3 +1,5 @@
+:: Compile and build 'analisis_covid' on windows using cmd or PowerShell
+
 SET CC=gcc
 SET CFLAGS=-std=c99 -Wall -pedantic
 
@@ -7,4 +9,6 @@ SET CFLAGS=-std=c99 -Wall -pedantic
 %CC% %CFLAGS% -c perrors.c
 %CC% %CFLAGS% -c arguments.c
 %CC% %CFLAGS% -c main.c
-%CC% %CFLAGS% main.o arguments.o perrors.o load_country_codes.o read_file.o print_file.o -o main
+%CC% %CFLAGS% main.o arguments.o perrors.o load_country_codes.o read_file.o print_file.o -o analisis_covid
+
+del .\*.o