@echo off rem rem - - - - - - - rem P C . B A T rem - - - - - - - rem rem Create the C SOFA library. rem rem Last revision: 2013 November 7 rem rem Copyright P.T.Wallace. All rights reserved. echo Building and installing library libsofa_c.a ... if exist libsofa_c.a del libsofa_c.a copy *.h %homedrive%\a\include > NUL if exist *.c for %%f in (*.c) do if not "%%f"=="t_sofa_c.c" gcc -c -O -Wall %%f if exist t_sofa_c.o del t_sofa_c.o ar ru libsofa_c.a *.o > NUL copy libsofa_c.a %homedrive%\a\lib > NUL echo Building and running test program ... call cc t_sofa_c t_sofa_c if exist *.o del *.o echo ... done.