REM makeSetTest.bat REM John T. Rine REM October 16, 2011 del *.exe del *.o del *.a gcc -c displaySet.c -o displaySet.o gcc -c cntChars.c -o cntChars.o gcc -c checkSetNotation.c -o checkSetNotation.o gcc -c occurrences.c -o occurrences.o gcc -c parseSet.c -o parseSet.o gcc -c strEqu.c -o strEqu.o ar src libset.a *.o gcc -I. setTest.c -o setTest libset.a SET /P M=What program to run? setTest %M% pause