######################################################################### # # # Makefile for all programs in ELEC2041 Experiment 5 # # # ######################################################################### # Author: John Zaitseff # Date: 9th May, 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 flash-v1.make $(MAKECMDGOALS) $(MAKE) -e -f flash-v2.make $(MAKECMDGOALS) $(MAKE) -e -f pb-poll.make $(MAKECMDGOALS) $(MAKE) -e -f pb-irq-v1.make $(MAKECMDGOALS) $(MAKE) -e -f pb-irq-v2.make $(MAKECMDGOALS) -$(MAKE) -e -f flash-jt.make $(MAKECMDGOALS) -$(MAKE) -e -f timer-irq.make $(MAKECMDGOALS) # Miscellaneous rules .PHONY: all clean .DEFAULT: .SUFFIXES: