# From Thinking in C++, 2nd Edition # At http://www.BruceEckel.com # (c) Bruce Eckel 1999 # Copyright notice in Copyright.txt # Automatically-generated MAKEFILE # For examples in directory C0A # using the Borland compiler # Note: does not make files that will # not compile with this compiler # Invoke with: make -f Borland.makefile # Note: this requires the upgrade from # www.Borland.com for successful compilation! CPP = Bcc32 CPPFLAGS = -w-inl -w-csu -wnak OFLAG = -e .SUFFIXES : .obj .cpp .c .cpp.obj : $(CPP) $(CPPFLAGS) -c $< .c.obj : $(CPP) $(CPPFLAGS) -c $< all: \ Dummy.exe test: all Dummy.exe bugs: @echo No compiler bugs in this directory! Dummy.exe: Dummy.obj $(CPP) $(OFLAG)Dummy.exe Dummy.obj Dummy.obj: Dummy.cpp