9511_project01

project 1 for algorithms & programming I (9511) prof. Cardozo
Index Commits Files Refs README
make.bat (488B)
   1 :: Compile and build 'analisis_covid' on windows using cmd or PowerShell
   2 
   3 SET CC=gcc
   4 SET CFLAGS=-std=c99 -Wall -pedantic
   5 
   6 %CC% %CFLAGS% -c print_file.c
   7 %CC% %CFLAGS% -c read_file.c
   8 %CC% %CFLAGS% -c load_country_codes.c
   9 %CC% %CFLAGS% -c perrors.c
  10 %CC% %CFLAGS% -c arguments.c
  11 %CC% %CFLAGS% -c main.c
  12 %CC% %CFLAGS% main.o arguments.o perrors.o load_country_codes.o read_file.o print_file.o -o analisis_covid
  13 
  14 :: Deletes unnecessary .o files after the compile ends;
  15 del .\*.o