CC = bcc32 -w-8060 CCC = $(CC) -WC WCC = $(CC) -W AR = tlib WINDOWS = $(LNOCYGWIN) LFLAGS = -WC $(WINDOWS) CFLAGS = -I$(SD) -I.. all: C testall: testC clean: -rm *.exe -rm *.o C: compare.exe plot_function.exe \ cool.exe ginger.exe product.exe \ no_pass.exe product2.exe \ do_loop.exe series.exe tasks.exe \ example.exe pass.exe series_test.exe wheel.exe F: compare_f.exe plot_function_f.exe \ cool_f.exe ginger_f.exe product_f.exe \ no_pass_f.exe product2_f.exe \ do_loop_f.exe series_f.exe tasks_f.exe \ example_f.exe pass_f.exe series_test_f.exe wheel_f.exe testC: compare plot_function \ cool ginger product \ no_pass product2 \ do_loop series tasks \ example pass series_test wheel testF: compare_f plot_function_f \ cool_f ginger_f product_f \ no_pass_f product2_f \ do_loop_f series_f tasks_f \ example_f pass_f series_test_f wheel_f compare_f.exe: compare.f $(F77CHK) $< $(F77) $(FFLAGS) -o $@ $< $(LFLAGS) plot_function_f.exe: plot_function.f $(F77CHK) $< $(F77) $(FFLAGS) -o $@ $< $(LFLAGS) cool_f.exe: cool.f $(F77CHK) $< $(F77) $(FFLAGS) -o $@ $< $(LFLAGS) ginger_f.exe: ginger.f $(F77CHK) $< $(F77) $(FFLAGS) -o $@ $< $(LFLAGS) product_f.exe: product.f $(F77CHK) $< $(F77) $(FFLAGS) -o $@ $< $(LFLAGS) no_pass_f.exe: no_pass.f $(F77CHK) $< $(F77) $(FFLAGS) -o $@ $< $(LFLAGS) product2_f.exe: product2.f $(F77CHK) $< $(F77) $(FFLAGS) -o $@ $< $(LFLAGS) do_loop_f.exe: do_loop.f $(F77CHK) $< $(F77) $(FFLAGS) -o $@ $< $(LFLAGS) series_f.exe: series.f $(F77CHK) $< $(F77) $(FFLAGS) -o $@ $< $(LFLAGS) tasks_f.exe: tasks.f $(F77CHK) $< $(F77) $(FFLAGS) -o $@ $< $(LFLAGS) example_f.exe: example.f $(F77CHK) $< $(F77) $(FFLAGS) -o $@ $< $(LFLAGS) pass_f.exe: pass.f $(F77CHK) $< $(F77) $(FFLAGS) -o $@ $< $(LFLAGS) series_test_f.exe: series_test.f $(F77CHK) $< $(F77) $(FFLAGS) -o $@ $< $(LFLAGS) wheel_f.exe: wheel.f $(F77CHK) $< $(F77) $(FFLAGS) -o $@ $< $(LFLAGS) compare: compare.exe $@ plot_function: plot_function.exe $@ cool: cool.exe $@ ginger: ginger.exe $@ product: product.exe $@ no_pass: no_pass.exe $@ product2: product2.exe $@ do_loop: do_loop.exe $@ series: series.exe $@ tasks: tasks.exe $@ example: example.exe $@ pass: pass.exe $@ series_test: series_test.exe $@ wheel: wheel.exe $@ compare_f: compare_f.exe $@ plot_function_f: plot_function_f.exe $@ cool_f: cool_f.exe $@ ginger_f: ginger_f.exe $@ product_f: product_f.exe $@ no_pass_f: no_pass_f.exe $@ product2_f: product2_f.exe $@ do_loop_f: do_loop_f.exe $@ series_f: series_f.exe $@ tasks_f: tasks_f.exe $@ example_f: example_f.exe $@ pass_f: pass_f.exe $@ series_test_f: series_test_f.exe $@ wheel_f: wheel_f.exe $@