######################################################################### # # # Makefile for all programs in ELEC2041 Experiment 3 # # # ######################################################################### # Author: John Zaitseff # Date: 29th April, 2003 # Version: 1.4 # This file recompiles all of the programs in the current directory. It # does this by calling the individual Makefiles for those programs. all clean: $(MAKE) -e -f cmp-c-s.make $(MAKECMDGOALS) $(MAKE) -e -f cmp-c-u.make $(MAKECMDGOALS) $(MAKE) -e -f cmp-s.make $(MAKECMDGOALS) $(MAKE) -e -f cmp-u.make $(MAKECMDGOALS) $(MAKE) -e -f chsub-c.make $(MAKECMDGOALS) $(MAKE) -e -f chsub-s.make $(MAKECMDGOALS) $(MAKE) -e -f matrix-c.make $(MAKECMDGOALS) $(MAKE) -e -f matrix-v1.make $(MAKECMDGOALS) $(MAKE) -e -f matrix-v2.make $(MAKECMDGOALS) $(MAKE) -e -f larger-c.make $(MAKECMDGOALS) $(MAKE) -e -f larger-v1.make $(MAKECMDGOALS) $(MAKE) -e -f larger-v2.make $(MAKECMDGOALS) $(MAKE) -e -f larger-v3.make $(MAKECMDGOALS) $(MAKE) -e -f larger-v4.make $(MAKECMDGOALS) -$(MAKE) -e -f toupper.make $(MAKECMDGOALS) -$(MAKE) -e -f atoi-v1.make $(MAKECMDGOALS) -$(MAKE) -e -f toupper-f.make $(MAKECMDGOALS) -$(MAKE) -e -f atoi-v2.make $(MAKECMDGOALS) -$(MAKE) -e -f iter-div.make $(MAKECMDGOALS) -$(MAKE) -e -f posn-div-v1.make $(MAKECMDGOALS) -$(MAKE) -e -f posn-div-v2.make $(MAKECMDGOALS) # Miscellaneous rules .PHONY: all clean .DEFAULT: .SUFFIXES: