# Include the macros from the central list of the macros for this development # suite. Examine the file makeTutorial/macros.inc to see what it is defining. include ../macros.inc # List what we are reliant on OBJS = viewobj1.o viewobj2.o viewobj3.o output.o # Declare how we are reliant on those objects all: ${OBJS} # The following could be eliminated by proper use of a suffix rule, but # that is left as an exercise to the user. Check model/Makefile to see how # to do it. viewobj1.o: viewobj1.hh viewobj2.o: viewobj2.hh viewobj3.o: viewobj3.hh # This is here for demonstration purposes only, it doesn't actually do anything. output.o: echo Compiling view.