######################################################################### # # # Makefile for all programs in ELEC2041 Experiment 2 # # # ######################################################################### # Author: John Zaitseff # Date: 8th March, 2003 # Version: 1.1 # 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 add-c.make $(MAKECMDGOALS) $(MAKE) -e -f add-v1.make $(MAKECMDGOALS) $(MAKE) -e -f add-v2.make $(MAKECMDGOALS) $(MAKE) -e -f add-v3.make $(MAKECMDGOALS) $(MAKE) -e -f add-v4.make $(MAKECMDGOALS) $(MAKE) -e -f add-v5.make $(MAKECMDGOALS) $(MAKE) -e -f exp-c.make $(MAKECMDGOALS) $(MAKE) -e -f exp-s.make $(MAKECMDGOALS) -$(MAKE) -e -f swap.make $(MAKECMDGOALS) -$(MAKE) -e -f reg-manip.make $(MAKECMDGOALS) -$(MAKE) -e -f gcd.make $(MAKECMDGOALS) -$(MAKE) -e -f iter-mul.make $(MAKECMDGOALS) -$(MAKE) -e -f posn-mul.make $(MAKECMDGOALS) # Miscellaneous rules .PHONY: all clean .DEFAULT: .SUFFIXES: